21 lines
260 B
Vue
21 lines
260 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'app',
|
|
components: {},
|
|
created() {},
|
|
methods: {},
|
|
}
|
|
</script>
|
|
<style lang="scss">
|
|
#app {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|