1234567891011121314151617181920212223 |
- <template>
- <div id="app">
- <router-view/>
- </div>
- </template>
- <script>
- import '@/assets/styles/reset.less'
- import '@/assets/styles/public.less'
- import '@/assets/font/iconfont.css'
- export default {
-
- }
- </script>
- <style>
- #app{
- width: 100%;
- height: 100%;
- background-color: #f0f0f2;
- }
- </style>
|