| 1234567891011121314151617181920212223242526272829 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <style lang="scss">
- ul {
- list-style: none;
- margin: 0;
- padding: 0;
- }
- #app {
- width: 100vw;
- height: 100vh;
- background-color: rgba(242, 242, 242, 1);
- box-sizing: border-box;
- }
- .van-picker {
- .van-ellipsis {
- line-height: 88px;
- }
- }
- </style>
- <style>
- @import "./style/index.css";
- </style>
|