Package Exports
- @jaythegeek/crmtoolkit
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@jaythegeek/crmtoolkit) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Flock Components for VueJS
Installation and Usage:
- Just use
npm install --save @jaythegeek/crmtoolkit - Now you can include the scripts by using following snippet:
import Components from '@jaythegeek/crmtoolkit';
// Global registration in your main.js/App.vue file
Object.entries(Components).forEach((name, component) => {
Vue.component(name, component);
});