From f671c670db84631abb1f7d9e4fbf432637de2947 Mon Sep 17 00:00:00 2001 From: roymondchen Date: Fri, 7 Mar 2025 14:33:13 +0800 Subject: [PATCH] =?UTF-8?q?feat(vue-runtime-help):=20useDsl/useEditorDsl?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0app=E9=BB=98=E8=AE=A4=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- runtime/vue-runtime-help/package.json | 2 +- runtime/vue-runtime-help/src/hooks/use-dsl.ts | 6 ++---- runtime/vue-runtime-help/src/hooks/use-editor-dsl.ts | 4 +--- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/runtime/vue-runtime-help/package.json b/runtime/vue-runtime-help/package.json index 76b7b856..f2f81f0c 100644 --- a/runtime/vue-runtime-help/package.json +++ b/runtime/vue-runtime-help/package.json @@ -1,5 +1,5 @@ { - "version": "1.1.0", + "version": "1.1.1", "name": "@tmagic/vue-runtime-help", "type": "module", "sideEffects": false, diff --git a/runtime/vue-runtime-help/src/hooks/use-dsl.ts b/runtime/vue-runtime-help/src/hooks/use-dsl.ts index fdc356ee..e237332f 100644 --- a/runtime/vue-runtime-help/src/hooks/use-dsl.ts +++ b/runtime/vue-runtime-help/src/hooks/use-dsl.ts @@ -1,12 +1,10 @@ import { inject, nextTick, onBeforeUnmount, reactive, ref } from 'vue-demi'; -import type TMagicCore from '@tmagic/core'; +import type TMagicApp from '@tmagic/core'; import type { ChangeEvent, MNode } from '@tmagic/core'; import { isPage, replaceChildNode } from '@tmagic/core'; -export const useDsl = () => { - const app = inject('app'); - +export const useDsl = (app = inject('app')) => { if (!app) { throw new Error('useDsl must be used after MagicApp is created'); } diff --git a/runtime/vue-runtime-help/src/hooks/use-editor-dsl.ts b/runtime/vue-runtime-help/src/hooks/use-editor-dsl.ts index 2455378a..bcebf1d2 100644 --- a/runtime/vue-runtime-help/src/hooks/use-editor-dsl.ts +++ b/runtime/vue-runtime-help/src/hooks/use-editor-dsl.ts @@ -11,9 +11,7 @@ declare global { } } -export const useEditorDsl = (win = window) => { - const app = inject('app'); - +export const useEditorDsl = (app = inject('app'), win = window) => { const root = ref(); const curPageId = ref(); const selectedId = ref();