mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
32 lines
802 B
Vue
32 lines
802 B
Vue
<template>
|
|
<magic-ui-page :config="pageConfig"></magic-ui-page>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent, inject, reactive } from 'vue';
|
|
|
|
import Core from '@tmagic/core';
|
|
import { MNode } from '@tmagic/schema';
|
|
import { replaceChildNode } from '@tmagic/utils';
|
|
|
|
export default defineComponent({
|
|
name: 'App',
|
|
|
|
setup() {
|
|
const app = inject<Core | undefined>('app');
|
|
const pageConfig = reactive(app?.page?.data || {});
|
|
|
|
app?.dataSourceManager?.on('update-data', (nodes: MNode[], sourceId: string) => {
|
|
nodes.forEach((node) => {
|
|
const newNode = app.compiledNode(node, app.dataSourceManager?.data || {}, sourceId);
|
|
replaceChildNode(reactive(newNode), [pageConfig as MNode]);
|
|
});
|
|
});
|
|
|
|
return {
|
|
pageConfig,
|
|
};
|
|
},
|
|
});
|
|
</script>
|