Skip to content

多选框(组)

基于 naive-ui 的checkbox二次封装。

INFO

无需引入,可直接使用

Usage

vue
<template>
  <w-checkbox v-model:value="checkboxValue" :options="checkboxOptions" />
</template>

Props

名称类型默认值说明
optionsCheckboxProps[][]checkbox props 的数组

Type

ts
import type { CheckboxGroupProps } from 'naive-ui'

import { props } from './props'

type ExtendProps = Partial<ExtractPropTypes<typeof props>>

export interface WCheckboxProps extends CheckboxGroupProps, ExtendProps {}

Released under the MIT License.