123456789101112131415161718192021222324 |
- <template>
- <div id="app">
- <router-view></router-view>
- </div>
- </template>
- <script>
- export default {
- components: {},
- computed: {},
- data() {
- return {};
- },
- mounted() {},
- methods: {}
- };
- </script>
- <style lang="scss" scoped>
- #app {
- width: 100%;
- height: 100%;
- }
- </style>
|