1.vue 456 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div class="headSectorBox">
  3. <header1Style />
  4. </div>
  5. </template>
  6. <script>
  7. import header1Style from '../../components/head/1.vue';
  8. export default {
  9. props: {},
  10. components: {
  11. header1Style,
  12. },
  13. data() {
  14. return {};
  15. },
  16. };
  17. </script>
  18. <style scoped lang="less">
  19. .headSectorBox {
  20. width: 100%;
  21. display: flex;
  22. flex-wrap: wrap;
  23. justify-content: center;
  24. align-items: center;
  25. }
  26. </style>