12345678910111213141516171819 |
- <template>
- <div id="app">
- <Router-view />
- </div>
- </template>
- <script>
- export default {
- };
- </script>
- <style lang="less">
- #app {
- width: 100vw;
- height: 100vh;
- // min-width: 1600px;
- // min-height: 800px;
- // overflow: auto;
- }
- </style>
|