UNPKG

tass-ui

Version:

A high quality UI Toolkit built on Vue.js3+.

14 lines (13 loc) 361 B
import type { ComputedRef } from 'vue'; export interface checkBoxProps { indeterminate?: boolean; isChecked?: boolean; name?: string; disabled?: boolean; label?: string | number | boolean | object; modelValue?: string | number | boolean; } export interface T { modelValue?: ComputedRef; handlerChange?: (val: unknown) => void; }