Files
emall-web/src/plugins/touch.js
2025-10-17 16:28:41 +08:00

16 lines
336 B
JavaScript

import { touchDirectives } from './touch';
/**
* 移动端触摸交互Vue插件
*/
export default {
install(app) {
// 注册所有触摸指令
Object.keys(touchDirectives).forEach(key => {
app.directive(key, touchDirectives[key]);
});
}
};
// 单独导出指令,以便按需使用
export { touchDirectives };