whyczyk
2021-03-03 f2a7ea7317e3e3e8737d8e6e4d979f033711ec7a
src/App.vue
@@ -5,36 +5,36 @@
</template>
<script>
   export default {
      name: 'App',
      components: {
export default {
   name: 'App',
   components: {
   },
   data() {
      return {
         kk: 1
      },
      data() {
         return {
            kk: 1
         }
      },
      methods: {
         changeLink: function () {
            this.$store.commit('user/changeLink');
         }
      },
      computed: {
      }
   },
   methods: {
      changeLink: function() {
         this.$store.commit('user/changeLink');
      }
   },
   computed: {
   }
}
</script>
<style>
#app {
  height: 100vh;
  background-color: #031D67;
  background-image: url("./assets/images/bg-box.png");
}
#app:before {
  display: table;
  content: " ";
}
</style>
   #app {
      height: 100vh;
      background-color: #031D67;
      background-image: url("./assets/images/bg-box.png");
   }
   #app:before {
      display: table;
      content: " ";
   }
</style>