vue-sfc-rollup
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -6,3 +6,3 @@ { | ||
"license": "ISC", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"bin": { | ||
@@ -9,0 +9,0 @@ "sfc-rollup-init": "./sfc-init.js" |
@@ -30,3 +30,7 @@ // Import vue components | ||
// To allow use as module (npm/webpack/etc.) export components | ||
// Default export is library as a whole, registered via Vue.use() | ||
export default plugin; | ||
// To allow individual component use, export components | ||
// each can be registered via Vue.component() | ||
export * from './lib-components/index'; |
@@ -28,3 +28,7 @@ // Import vue component | ||
// To allow use as module (npm/webpack/etc.) export component | ||
// Inject install function into component - allows component | ||
// to be registered via Vue.use() as well as Vue.component() | ||
component.install = install; | ||
// Export component by default | ||
export default component; | ||
@@ -31,0 +35,0 @@ |
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
21294
280