vuikit

0.8.10 • Public • Published

vuikit

NPM version

Install

$ npm install --save vuikit

Usage

import Vue from 'vue'
import Vuikit from 'vuikit'
 
Vue.use(Vuikit)
<template>
  <vk-button>MyButton</vk-button>
</template>

Smaller Bundle Size

Installing the entire library is useful for prototyping and testing but for production is recommended to cherry pick the desired resources and register them manually.

import { Button as VkButton } from 'vuikit/lib/button'
import { Tooltip as VkTooltip } from 'vuikit/lib/tooltip'
 
// globally
Vue.component('VkButton', VkButton)
Vue.directive('VkTooltip', VkTooltip) // tooltip is a directive
 
// or locally
export default {
  components: {
    VkButton
  },
  directives: {
    VkTooltip
  }
}

License

MIT © Miljan Aleksic

Package Sidebar

Install

npm i vuikit

Weekly Downloads

463

Version

0.8.10

License

MIT

Unpacked Size

1.24 MB

Total Files

360

Last publish

Collaborators

  • miljan