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