fix(vue-runtime-help): 更新dsl时,设置默认选中项与默认页面

This commit is contained in:
roymondchen 2024-11-28 15:13:51 +08:00 committed by roymondchen
parent 2186fc4e87
commit d1197279fd
2 changed files with 10 additions and 1 deletions

View File

@ -1,5 +1,5 @@
{
"version": "0.1.4",
"version": "0.1.5",
"name": "@tmagic/vue-runtime-help",
"type": "module",
"sideEffects": false,

View File

@ -33,6 +33,15 @@ export const useEditorDsl = (app: TMagicApp | undefined, win = window) => {
updateRootConfig(config: MApp) {
root.value = config;
if (typeof curPageId.value === 'undefined') {
curPageId.value = config.items?.[0]?.id;
}
if (typeof selectedId.value === 'undefined') {
selectedId.value = curPageId.value;
}
app?.setConfig(config, curPageId.value);
},