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