14 lines
141 B
Vue
14 lines
141 B
Vue
|
<template>
|
||
|
<div id="app">
|
||
|
<router-view />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'App',
|
||
|
mounted() {
|
||
|
}
|
||
|
}
|
||
|
</script>
|