0.8.10 • Published 7 years ago

vuikit v0.8.10

Weekly downloads
737
License
MIT
Repository
-
Last release
7 years ago

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/button'
import { Tooltip as VkTooltip } from 'vuikit/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

0.9.0-beta3

7 years ago

0.8.10

7 years ago

0.8.9

7 years ago

0.8.8

7 years ago

0.8.7

7 years ago

0.8.6

7 years ago

0.9.0-beta2

7 years ago

0.9.0-beta

7 years ago

0.8.5

7 years ago

0.8.4

7 years ago

0.8.3

7 years ago

0.8.2

7 years ago

0.8.1

7 years ago

0.8.0

7 years ago

0.7.0

7 years ago

0.6.3

8 years ago

0.6.2

9 years ago

0.6.1

9 years ago

0.6.0

9 years ago

0.5.0

9 years ago

0.4.1

9 years ago

0.4.0

9 years ago

0.3.0

9 years ago

0.1.0

9 years ago

0.2.0

9 years ago