@livestorm/ui-vue
v1.1.3
Published
Livestorm UI components for Vue 3
Downloads
29
Keywords
Readme
Livestorm Vue Components Library
Install
npm install @livestorm/ui-vue
Storybook
All the components are described in our Storybook: https://storybook.livestorm.co
Usage
Import style:
import "@livestorm/ui-vue/dist/style.css";
Use components in your Vue files:
<template>
<div>
<LsButton class="base-button-primary"> Hello World </LsButton>
<LsCheckbox
:value="true"
label="My label"
for-id="my-id"
tooltip="My tooltip"
/>
</div>
</template>
<script>
import { LsButton, LsCheckbox } from "@livestorm/ui-vue";
export default {
components: {
LsButton,
LsCheckbox,
},
};
</script>
Compatibility
Compatible with Vue 2 only for now. Support for Vue 3 is coming.