1.8.11 • Published 4 years ago

@knowscount/vue-lib v1.8.11

Weekly downloads
-
License
MIT
Repository
github
Last release
4 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

4 years ago

1.1.6

4 years ago

1.1.5

4 years ago

1.1.4

4 years ago

1.1.3

4 years ago

1.8.11

4 years ago

1.7.10

4 years ago

1.7.11

4 years ago

1.5.10

4 years ago

1.5.9

4 years ago

1.6.10

4 years ago

1.4.9

4 years ago

1.3.8

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago