UNPKG

tass-ui

Version:

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

17 lines (16 loc) 299 B
export type key = string | number; export interface IData { key: key; label: string; disabled: boolean; } export interface Props { key: string; label: string; disabled: string; } export interface ItransferProps { data: IData[]; modelValue: key[]; props: Props; }