You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
313 B
22 lines
313 B
![]()
2 years ago
|
<template>
|
||
|
<div id="app">
|
||
|
<router-view class="main"></router-view>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'app'
|
||
|
}
|
||
|
</script>
|
||
|
<style lang="scss" rel="stylesheet/scss">
|
||
|
@import "assets/style/index.scss";
|
||
|
|
||
|
#app {
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
.main {
|
||
|
background: #ededed;;
|
||
|
}
|
||
|
</style>
|