fo-vue-ui 0.0.7 → 0.0.8

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "fo-vue-ui",
3
3
  "private": false,
4
- "version": "0.0.7",
4
+ "version": "0.0.8",
5
5
  "type": "module",
6
6
  "main": "dist/fo-vue-ui.umd.cjs",
7
7
  "scripts": {
@@ -5,6 +5,7 @@ const components = [ceshicomp]
5
5
 
6
6
  const install = (app: App) => {
7
7
  components.forEach((component) => {
8
+ console.log("component", component)
8
9
  const compName = component.__name || component.name
9
10
  console.log("install component", compName)
10
11
  if (compName) {
@@ -21,4 +22,5 @@ const install = (app: App) => {
21
22
  if (typeof window !== "undefined" && "Vue" in window) {
22
23
  install(window.Vue as App)
23
24
  }
24
- export default install
25
+
26
+ export default { install }