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.
npm i @kozmonos/form-elementsCopy
npm i @kozmonos/form-elements
import "bootstrap/dist/css/bootstrap.css"; import "bootstrap-vue/dist/bootstrap-vue.css";Copy
import "bootstrap/dist/css/bootstrap.css"; import "bootstrap-vue/dist/bootstrap-vue.css";
<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>Copy
<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>