123456789101112131415161718192021222324252627282930 |
- <template>
- <div id="app">
- <router-view/>
- </div>
- </template>
- <script>
- export default {
- name: "app",
- data() {
- return {};
- },
- methods: {
-
- }
- };
- </script>
- <style rel="stylesheet/scss" lang="scss">
- #app {
- position: absolute;
- right: 0;
- left: 0;
- bottom: 0;
- top: 0;
- background: #efefef;
- overflow: auto;
- z-index: 900;
- display: flex;
- flex-direction: row;
- }
- </style>
|