@ipscape/ips-checkbox

A checkbox component

Usage no npm install needed!

<script type="module">
  import ipscapeIpsCheckbox from 'https://cdn.skypack.dev/@ipscape/ips-checkbox';
</script>

README

ips-checkbox

tested with jest jest

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

License: GPL v2 License: GPL v3

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.