20 lines
222 B
Vue
20 lines
222 B
Vue
|
<template>
|
||
|
<div id="app">
|
||
|
<router-view />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'App',
|
||
|
mounted() {
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
#app {
|
||
|
background-color: #f2f4f9;
|
||
|
}
|
||
|
</style>
|