wx-h5-fontsize-fixed
Version:
本组件库由有爱开发团队开发,解决微信页面被老人机字体调整大小特别丑的痛点
24 lines (20 loc) • 558 B
TypeScript
import 'vue';
type EventHandler = (...args: any[]) => void;
declare module 'vue' {
interface ComponentCustomProps {
id?: string;
role?: string;
tabindex?: number;
onClick?: EventHandler;
onTouchend?: EventHandler;
onTouchmove?: EventHandler;
onTouchstart?: EventHandler;
onTouchcancel?: EventHandler;
onTouchmovePassive?: EventHandler;
onTouchstartPassive?: EventHandler;
}
interface HTMLAttributes {
onTouchmovePassive?: EventHandler;
onTouchstartPassive?: EventHandler;
}
}