16 lines
160 B
Vue
16 lines
160 B
Vue
|
<template>
|
||
|
<div id="app">
|
||
|
<router-view/>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import './assets/style/common.css';
|
||
|
|
||
|
export default {
|
||
|
name: 'app'
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
|