number输入框最大值最小值限制;增加tab、mif图标
This commit is contained in:
12
src/shims-vue.d.ts
vendored
Normal file
12
src/shims-vue.d.ts
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
import type { ComponentCustomProperties } from 'vue'
|
||||
|
||||
// 扩展全局属性类型
|
||||
declare module '@vue/runtime-core' {
|
||||
interface ComponentCustomProperties {
|
||||
// 声明你的全局方法类型(根据实际方法参数和返回值调整)
|
||||
$handleInputLimit: (e: Event) => void;
|
||||
}
|
||||
}
|
||||
|
||||
// 必须导出空对象,否则 TypeScript 会认为这是一个模块声明
|
||||
export {}
|
||||
Reference in New Issue
Block a user