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.
21 lines
313 B
21 lines
313 B
<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>
|
|
|