15 lines
183 B
Vue
15 lines
183 B
Vue
|
<template>
|
||
|
<div id="app">
|
||
|
|
||
|
<router-view/>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script lang="ts">
|
||
|
import Vue from 'vue';
|
||
|
export default Vue.extend({});
|
||
|
</script>
|
||
|
|
||
|
|
||
|
<style lang="scss">
|
||
|
</style>
|