ci-plus 1.2.1 → 1.2.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/index.ts CHANGED
@@ -3,7 +3,9 @@ export * from './src/index';
3
3
  import { App } from 'vue';
4
4
 
5
5
  import * as Fn from './src/utils';
6
- console.log('D: ', Fn);
6
+
7
+
8
+ console.log('Fn123: ', Fn,);
7
9
 
8
10
  export default {
9
11
  install: (app: App) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ci-plus",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "ci组件库",
5
5
  "main": "./index.ts",
6
6
  "scripts": {
@@ -1,4 +1,10 @@
1
1
  export { default as withInstall } from './withinstall/index';
2
2
 
3
- export { default as setCardList } from './cardPrint'; // 导入默认的导出
4
- export * from './cardPrint'; // 导入所有导出(不包含默认导出)
3
+ // export { default as setCardList } from './cardPrint'; // 导入默认的导出
4
+ // export * from './cardPrint'; // 导入所有导出(不包含默认导出)
5
+
6
+ import { cardPrint, setCardList } from "./cardPrint";
7
+ import apis from "./baseApi";
8
+
9
+ // 导出 cardPrint 和 apis
10
+ export default { cardPrint, setCardList, apis };