KnowsCount / vue-lib

πŸ’ fun vue component library for my own use.

Home Page:https://csb-rr7eq-knowscount.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

@knowscount/vue-lib

Codacy Badge

vue component library containing fun stuff.

πŸ“Œ to-dos

marked in issues.

🀀 usage

see #3.

to install the library, run

npm install --save @knowscount/vue-lib

you can choose to import the entire library, or use a slightly different syntax to import individual components:

// Import and register entire library
import VueLib from '@knowscount/vue-lib';
Vue.use(VueLib);
// Import and register globally individual components from the library
import { FooComponent, FooComponent2 } from '@knowscount/vue-lib';
Vue.component('FooComponent', FooComponent);
Vue.component('FooComponent2', FooComponent2);
// Import and register locally individual components from the library
import { FooComponent, FooComponent2 } from '@knowscount/vue-lib';

export default {
  name: 'SomeParentComponent',
  components: {
    FooComponent,
    FooComponent2,
  }
  ...
}

πŸ™‹β€β™‚οΈ contributing

please read CONTRIBUTING.md.

πŸ›  project setup

npm install

πŸ”¨ compiles and hot-reloads for development

npm run serve

πŸ“¦ compiles and minifies for production

npm run build

πŸ”§ customize configuration

see configuration reference.

About

πŸ’ fun vue component library for my own use.

https://csb-rr7eq-knowscount.vercel.app

License:Do What The F*ck You Want To Public License


Languages

Language:Vue 87.6%Language:JavaScript 12.4%