fo-vue-ui 0.0.4 → 0.0.6
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
package/src/components/index.ts
CHANGED
|
@@ -5,7 +5,7 @@ const components = [ceshicomp]
|
|
|
5
5
|
|
|
6
6
|
const install = (app: App) => {
|
|
7
7
|
components.forEach((component) => {
|
|
8
|
-
console.log("install component", component.name)
|
|
8
|
+
console.log("install component", component.name, component)
|
|
9
9
|
if (component.name) {
|
|
10
10
|
app.component(component.name, component)
|
|
11
11
|
}
|
|
@@ -15,5 +15,4 @@ const install = (app: App) => {
|
|
|
15
15
|
if (typeof window !== "undefined" && "Vue" in window) {
|
|
16
16
|
install(window.Vue as App)
|
|
17
17
|
}
|
|
18
|
-
|
|
19
18
|
export default install
|