New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@knowscount/vue-lib

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@knowscount/vue-lib

fun vue component library built on @aaroniker's codepens.

latest
Source
npmnpm
Version
1.8.11
Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

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

Keywords

vuejs

FAQs

Package last updated on 26 Apr 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts