@qiu_qiu/vue-auto-component-framework 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -7,7 +7,7 @@ export { FileScanner } from './core/FileScanner.js';
7
7
  export { ComponentScanner } from './core/ComponentScanner.js';
8
8
  export { AppCreator } from './core/AppCreator.js';
9
9
  // Export layout components
10
- export { default as DefaultLayout } from '@/layout/DefaultLayout.vue';
10
+ // Vue文件导出在编译输出中已移除
11
11
  export { LayoutManager } from './layout/LayoutManager.js';
12
12
  /**
13
13
  * Create Vue app with framework features
@@ -1,5 +1,5 @@
1
1
  import { FrameworkError, FrameworkErrorType } from '../types/index.js';
2
- // Vue file import removed in compiled output
2
+ // Vue文件导入在编译输出中已移除
3
3
  /**
4
4
  * Layout manager handles layout configuration and registration
5
5
  */
@@ -1,2 +1,2 @@
1
- export { default as DefaultLayout } from './DefaultLayout.vue';
1
+ // Vue文件导出在编译输出中已移除
2
2
  export { LayoutManager } from './LayoutManager.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qiu_qiu/vue-auto-component-framework",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "type": "module",
5
5
  "description": "A Vue3 TypeScript framework with automatic component registration and layout system",
6
6
  "main": "dist/index.js",