PageCameraList.vue 279 B

12345678910
  1. <template>
  2. <BasicLayoutList :layout-type="LayoutConfigType.camera" />
  3. </template>
  4. <script lang="ts" setup>
  5. import BasicLayoutList from './component/BasicLayoutList.vue';
  6. import { LayoutConfigType } from '@/types/page-config/type';
  7. </script>
  8. <style lang="scss" scoped></style>