number输入框最大值最小值限制;增加tab、mif图标

This commit is contained in:
zh
2025-11-10 15:24:34 +08:00
parent c7091590e1
commit 812604beb1
17 changed files with 7677 additions and 205 deletions

12
src/shims-vue.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
import type { ComponentCustomProperties } from 'vue'
// 扩展全局属性类型
declare module '@vue/runtime-core' {
interface ComponentCustomProperties {
// 声明你的全局方法类型(根据实际方法参数和返回值调整)
$handleInputLimit: (e: Event) => void;
}
}
// 必须导出空对象,否则 TypeScript 会认为这是一个模块声明
export {}