| 123456789101112131415161718192021222324252627 |
- <template>
- <div class="skmh container">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- name: "skmh",
- data() {
- return {};
- },
- mounted() {},
- methods: {},
- };
- </script>
- <style lang="less" scoped>
- .container {
- width: 1920px;
- margin: 0 auto;
- }
- .skmh {
- position: relative;
- }
- </style>
|