mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
24 lines
441 B
Vue
24 lines
441 B
Vue
<template>
|
|
<component :is="pageComponent" :config="pageConfig"></component>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
|
|
import { useComponent, useDsl } from '@tmagic/vue-runtime-help';
|
|
|
|
export default defineComponent({
|
|
name: 'App',
|
|
|
|
setup() {
|
|
const { pageConfig } = useDsl();
|
|
const pageComponent = useComponent('page');
|
|
|
|
return {
|
|
pageComponent,
|
|
pageConfig,
|
|
};
|
|
},
|
|
});
|
|
</script>
|