diff --git a/.env b/.env new file mode 100644 index 0000000..b44d27e --- /dev/null +++ b/.env @@ -0,0 +1 @@ +VITE_BASE_URL=/ \ No newline at end of file diff --git a/components.d.ts b/components.d.ts index d1be826..f985ab4 100644 --- a/components.d.ts +++ b/components.d.ts @@ -8,7 +8,9 @@ export {} declare module 'vue' { export interface GlobalComponents { AdaptivePage: typeof import('./src/components/AdaptivePage.vue')['default'] + Designer: typeof import('./src/components/Designer.vue')['default'] DynamicComponent: typeof import('./src/components/DynamicComponent.vue')['default'] + MainView: typeof import('./src/components/MainView.vue')['default'] NestedFunction: typeof import('./src/components/NestedFunction.vue')['default'] PropertyEditor: typeof import('./src/components/PropertyEditor.vue')['default'] RouterLink: typeof import('vue-router')['RouterLink'] diff --git a/package.json b/package.json index 28ebbce..99951c6 100644 --- a/package.json +++ b/package.json @@ -26,6 +26,7 @@ }, "devDependencies": { "@arco-design/web-vue": "^2.56.0", + "@types/lodash": "^4.17.13", "@types/node": "^22.9.0", "@vitejs/plugin-vue": "^5.0.5", "concurrently": "^9.1.0", diff --git a/preview/store/index.ts b/preview/store/index.ts deleted file mode 100644 index 02ae96a..0000000 --- a/preview/store/index.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { createPinia } from 'pinia'; - -const store = createPinia(); - -export default store; diff --git a/preview/views/Preview.vue b/preview/views/Preview.vue deleted file mode 100644 index d19342e..0000000 --- a/preview/views/Preview.vue +++ /dev/null @@ -1,27 +0,0 @@ - - - diff --git a/src/App.vue b/src/App.vue index d2a759d..3055c4a 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,12 +1,7 @@ -