1.0.0 • Published 4 days ago

vue-tri-state-checkbox v1.0.0

Weekly downloads
-
License
-
Repository
github
Last release
4 days ago

🚀 Installation

Install using your package manager of choice:

yarn add vue-tri-state-checkbox

📺 Demo

https://matija-components.vercel.app/tri-state-checkbox

⚙️ Usage

Import the component locally or define it globally and include the css file:

<template>
  <tri-state-checkbox v-model="val" label="Vite + Vue" />
</template>

<script lang="ts" setup>
import { ref } from "vue";
import { TriStateCheckbox } from "vue-tri-state-checkbox";
import "vue-tri-state-checkbox/dist/style.css";
const val = ref(null);
</script>

📃 Props

NameTypeDefaultDescription
v-modelboolean/nullStandard two way input
disabledbooleanfalseMakes the component uninteractable
colorstring#3ba13bColor of the checkbox background
labelstring/undefinedCheckbox label
1.0.0

4 days ago

0.0.4

6 months ago

0.0.3

11 months ago

0.0.1

11 months ago