0.1.0 • Published 3 years ago

custom-label v0.1.0

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

概述

文件上传

安装

引入

import CustomLabel from 'custom-label';

API

custom-label props

字段名说明类型默认值
selectedTags已选中的标签列表,双向绑定Array[]
tagList标签列表Array[]
tagNumLimit标签个数超过之后不可新增标签,不传或者传0则不限制Number
tagWordLimit新增标签内容长度限制Number

interface

interface UserTag {
  TagID: string;
  TagName: string;
}

custom-label event

方法名说明类型返回值
on-selected-list-change选中或者删除标签时触function选中的标签数组
on-dropdown-change下拉框状态变化时触发function下拉框状态
on-add-new-tag新增标签时触发function标签名称