## How to use: 1. Just use `npm install --save @jaythegeek/crmtoolkit` 2. Use the components in your file directly.
npm install @jaythegeek/crmtoolkitnpm install --save @jaythegeek/crmtoolkit
import Components from '@jaythegeek/crmtoolkit';// Global registration in your main.js/App.vue file
Object.entries(Components).forEach((name, component) => {
Vue.component(name, component);
});
``