JSPM

  • Created
  • Published
  • Downloads 163
  • Score
    100M100P100Q102555F
  • License MIT

## How to use: 1. Just use `npm install --save @jaythegeek/crmtoolkit` 2. Use the components in your file directly.

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:

  1. Just use npm install --save @jaythegeek/crmtoolkit
  2. 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);
});