PageScene.vue 283 B

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