sard-uniapp
Version:
sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
17 lines (16 loc) • 400 B
TypeScript
import { type StyleValue } from 'vue';
export interface SidebarItemProps {
rootStyle?: StyleValue;
rootClass?: string;
title?: string;
name: string | number;
disabled?: boolean;
}
export interface SidebarItemSlots {
default?(props: Record<string, never>): any;
}
export interface SidebarItemEmits {
(e: 'click', event: any): void;
}
export interface SidebarItemExpose {
}