mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +08:00
23 lines
560 B
Vue
23 lines
560 B
Vue
<template>
|
|
<magic-ui-page :config="pageConfig"></magic-ui-page>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { inject } from 'vue';
|
|
|
|
import type { Page } from '@tmagic/core';
|
|
import type Core from '@tmagic/core';
|
|
import { addParamToUrl } from '@tmagic/utils';
|
|
import { useDsl } from '@tmagic/vue-runtime-help';
|
|
|
|
const app = inject<Core | undefined>('app');
|
|
const { pageConfig } = useDsl(app);
|
|
|
|
app?.on('page-change', (page?: Page) => {
|
|
if (!page) {
|
|
throw new Error(`页面不存在`);
|
|
}
|
|
addParamToUrl({ page: page.data.id }, window);
|
|
});
|
|
</script>
|