16 lines
336 B
JavaScript
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 }; |