1.8.11 • Published 3 years ago

@knowscount/vue-lib v1.8.11

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

@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.

1.0.2

3 years ago

1.1.6

3 years ago

1.1.5

3 years ago

1.1.4

3 years ago

1.1.3

3 years ago

1.8.11

3 years ago

1.7.10

3 years ago

1.7.11

3 years ago

1.5.10

3 years ago

1.5.9

3 years ago

1.6.10

3 years ago

1.4.9

3 years ago

1.3.8

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago