No Preview

Sorry, but you either have no stories or none are selected somehow.

If the problem persists, check the browser console, or the terminal you've run Storybook from.

Form Elements

It's a vue form element package.

Installation

1. install package
npm i @kozmonos/form-elements
2. import globally bootstrap css files
import "bootstrap/dist/css/bootstrap.css"; import "bootstrap-vue/dist/bootstrap-vue.css";

Usage

<template> <div> <k-button>test</k-button> <k-input label="test" /> </div> </template> <script> import { KButton, KInput } from "@kozmonos/form-elements"; export default { components: { KButton, KInput, }, }; </script>