12345678910111213141516171819202122 |
- <template>
- <div id="app">
- <router-view/>
- </div>
- </template>
- <style>
- @import "assets/css/reset.css";
- @import "assets/css/iconfont.css";
- </style>
- <style lang="scss">
- #app{
- width: 100%;
- height: 100%;
- }
- .icon {
- width: 1em;
- height: 1em;
- vertical-align: -0.15em;
- fill: currentColor;
- overflow: hidden;
- }
- </style>
|