2.1.2 • Published 5 years ago

lievue-components v2.1.2

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

ts-code/lievue-components

Installation

npm install ts-code/lievue-components

ES6

//
// You can register a component manually
//
import { Switch } from 'ts-code/lievue-components';

export default {
  ...
  components: {
    Switch
  },
  ...
};

//
// or register the whole module with vue
//
import ModuleLibrary from 'ts-code/lievue-components';

// Install this library
Vue.use(ModuleLibrary);