fix(runtime): vue runtime App组件中缺失inject

This commit is contained in:
roymondchen 2024-05-24 19:57:22 +08:00
parent d5ce54f35e
commit 15e9cdc2d6
3 changed files with 4 additions and 8 deletions

View File

@ -3,7 +3,7 @@
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import { defineComponent, inject } from 'vue';
import type { Page } from '@tmagic/core';
import Core from '@tmagic/core';

View File

@ -1,17 +1,11 @@
<template>
<magic-ui-page v-if="pageConfig" :config="pageConfig" :key="pageConfig.id"></magic-ui-page>
<magic-ui-page v-if="pageConfig" :key="pageConfig.id" :config="pageConfig"></magic-ui-page>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import { useEditorDsl } from '@tmagic/vue-runtime-help';
declare global {
interface Window {
magic: Magic;
appInstance: Core;
}
}
export default defineComponent({
setup() {

View File

@ -3,6 +3,8 @@
</template>
<script lang="ts" setup>
import { inject } from 'vue';
import type { Page } from '@tmagic/core';
import Core from '@tmagic/core';
import { addParamToUrl } from '@tmagic/utils';