Basic setup for Vue app

This commit is contained in:
Yukai Huang 2016-12-24 11:50:57 +08:00
parent a06fad974e
commit 99dd107724
7 changed files with 56 additions and 1 deletions

15
public/js/views/Cover.vue Normal file
View file

@ -0,0 +1,15 @@
<template>
<hello-world />
</template>
<script>
import HelloWorld from '../components/HelloWorld';
export default {
name: 'Cover',
components: {
HelloWorld
}
}
</script>