12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <div id="main" class="app-main">
- <router-view></router-view>
- </div>
- </template>
-
- <script>
- export default {
- data () {
- return {
- theme: this.$store.state.app.themeColor
- };
- },
- mounted () {
-
- },
- beforeDestroy () {
-
- },
- methods: {
-
- }
- };
- </script>
-
- <style>
- html,body{
- width: 100%;
- height: 100%;
- background: #f0f0f0;
- overflow: hidden;
- }
- .app-main{
- width: 100%;
- height: 100%;
- }
- </style>
|