1234567891011121314151617181920212223242526272829 |
- <template>
- <div class="headSectorBox">
- <header1Style />
- </div>
- </template>
- <script>
- import header1Style from '../../components/head/1.vue';
- export default {
- props: {},
- components: {
- header1Style,
- },
- data() {
- return {};
- },
- };
- </script>
- <style scoped lang="less">
- .headSectorBox {
- width: 100%;
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- align-items: center;
- }
- </style>
|