Start of web app

This commit is contained in:
2019-11-07 22:37:49 +03:00
parent fcfc200410
commit 483f6c8bd6
8 changed files with 73 additions and 21 deletions

View File

@ -7,12 +7,12 @@
<script>
// @ is an alias to /src
import HelloWorld from "../components/HelloWorld.vue";
import HelloWorld from '../components/HelloWorld.vue';
export default {
name: "home",
name: 'home',
components: {
HelloWorld
}
HelloWorld,
},
};
</script>