# 动态转换 swipe 组件
动态转换 swipe
组件。已不建议使用。
# 如何使用
安装
pnpm add @plugin-light/webpack-loader-swipe-component -D
在 vue.config.js
中添加如下设置:
const { LOADER: transformSwipeComponent } = require('@plugin-light/webpack-loader-swipe-component');
module.export = {
chainWebpack(config) {
config.module
.rule('vue')
.test(/\.vue$/)
.use(transformSwipeComponent)
.loader(transformSwipeComponent)
.end();
}
}