Skip to content

UI kit created with Vue, Typescript, Vitest and Storybook. Under development

Notifications You must be signed in to change notification settings

FedotovN/vue-ui-kit

Repository files navigation

Vue UI Kit

UI components created with Vue 3 and Typescript.

Unit testing using Vitest.

Quick start (Version 0)

npm:

  npm i kneekeetah-vue-ui-kit

yarn:

  yarn add kneekeetah-vue-ui-kit

After installation

  • Import styles bundle to your main file:
import "kneekeetah-vue-ui-kit/dist/style.css";

Using Nuxt:

export default defineNuxtConfig({
  css: ['kneekeetah-vue-ui-kit/dist/style.css],
})
  • Import components in your .vue files:
import { BaseDropdown, BaseInput, BaseButton } from "kneekeetah-vue-ui-kit";