17 lines
189 B
Vue
17 lines
189 B
Vue
<template>
|
|
<v-app>
|
|
<Main></Main>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script>
|
|
import Main from "./views/Main.vue";
|
|
|
|
export default {
|
|
name: "App",
|
|
components: {Main}
|
|
}
|
|
</script>
|
|
|
|
|