Initial commit. Add application skeleton

This commit is contained in:
2019-02-16 12:29:33 +07:00
commit 03ce30468c
25 changed files with 8395 additions and 0 deletions

23
src/App.vue Normal file
View File

@@ -0,0 +1,23 @@
<template>
<v-app>
<app-header></app-header>
<v-content>
<router-view/>
</v-content>
<app-footer></app-footer>
</v-app>
</template>
<script>
import AppHeader from '@/components/AppHeader';
import AppFooter from '@/components/AppFooter';
export default {
components: {
AppHeader,
AppFooter,
}
};
</script>