fhrons-mobile
Advanced tools
Comparing version 1.0.8 to 1.0.9
22
index.js
/* Automatically generated by './build/bin/build-entry.js' */ | ||
export const Introduce = require('./packages/introduce').default; | ||
export const Test = require('./packages/test').default; | ||
export const totalComponents = { | ||
Introduce, | ||
Test | ||
}; | ||
// export const Introduce = require('./packages/introduce').default; | ||
// export const Test = require('./packages/test').default; | ||
// export const totalComponents = { | ||
// Introduce, | ||
// Test | ||
// }; | ||
import packages from "./packages"; | ||
// export const totalComponents = { ...packages } | ||
export default { | ||
@@ -17,7 +20,8 @@ install: (Vue) => { | ||
}); | ||
for (const i in totalComponents) { | ||
totalComponents[i].install(Vue); | ||
for (const i in packages) { | ||
packages[i].install(Vue); | ||
} | ||
} | ||
}, | ||
...packages | ||
}; | ||
{ | ||
"name": "fhrons-mobile", | ||
"version": "1.0.8", | ||
"version": "1.0.9", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
import Test from './test' | ||
import Introduce from './introduce' | ||
export default { Test, Introduce } | ||
import AreaMobile from './areaMobile' | ||
export default { Test, Introduce, AreaMobile } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
78278
311