@dekalabs/kiui-design-system
v0.1.9
Published
Kiui components library
Downloads
7
Readme
Kiui Design System
How to use
Install the package
npm install --save @dekalabs/kiui-design-system
Use components
<script setup>
import { KiTextInput } from '@dekalabs/kiui-design-system'
</script>
<template>
<KiTextInput placeholder="[email protected]" :full-width="true" />
</template>
If you want to use the Kiui styles, you should import the next line on main.js
import '@dekalabs/kiui-design-system/styles'
How to develop with it
$ npm install
$ npm run dev
This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 <script setup>
SFCs, check out the script setup docs to learn more.