mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +08:00
14 lines
367 B
Vue
14 lines
367 B
Vue
<template>
|
|
<magic-ui-page v-if="pageConfig" :key="pageConfig.id" :config="pageConfig"></magic-ui-page>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { inject } from 'vue';
|
|
|
|
import type Core from '@tmagic/core';
|
|
import { useEditorDsl } from '@tmagic/vue-runtime-help';
|
|
|
|
const app = inject<Core | undefined>('app');
|
|
const { pageConfig } = useEditorDsl(app);
|
|
</script>
|