UNPKG

mine-h5-ui

Version:

一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍

44 lines (43 loc) 676 B
import { ModelRef } from 'vue'; /** * props */ export interface Props { /** * 宽度 */ width?: string; /** * 高度 */ height?: string; /** * 背景色 */ background?: string; /** * 边框样式 */ borderStyle?: boolean | string; /** * 线条颜色 */ strokeStyle?: string; /** * 线条粗细 */ lineWidth?: number; /** * 显示操作 */ visible?: boolean; } /** * useDraw */ export declare namespace USEDraw { interface Option { props: Readonly<Required<Props>>; modelValue: ModelRef<HTMLCanvasElement | undefined>; } }