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