12 lines
153 B
Vue
12 lines
153 B
Vue
|
<template>
|
||
|
<div id="app">
|
||
|
<router-view></router-view>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default{
|
||
|
name: 'APP'
|
||
|
}
|
||
|
</script>
|