17 lines
164 B
Vue
17 lines
164 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'App'
|
|
}
|
|
</script>
|
|
<style>
|
|
#app {
|
|
height: 100%;
|
|
}
|
|
</style>
|