@ipscape/ips-checkbox
v1.0.25
Published
A checkbox component
Downloads
97
Readme
ips-checkbox
The <ips-checkbox>
provides a checkbox component.
Live demo
See Storybook
Getting started
Install the component library:
npm install @ipscape/ips-checkbox
or
yarn add @ipscape/ips-checkbox
Add the component to your app:
import Vue from 'vue';
import IpsCheckbox from '@ipscape/ips-checkbox';
import '@ipscape/ips-checkbox/dist/ips-checkbox.css';
Vue.component(IpsCheckbox.name, IpsCheckbox);
Use a component in your application:
<template>
<ips-checkbox
v-on:change="update"
control="checkbox"
:classes="classes"
:disabled="disabled"
:required="required"
:checked="initValue"
>
</ips-checkbox>
</template>
License
Made with ❤ by ipSCAPE
Licensed under the terms of GNU General Public License Version 2 or later. For full details about the license, please check the LICENSE.md
file.