# Vue 中 key 转换
替换 Vue 文件key
的表示,以解决编译报错。
将
:key="'type' + index"
转为
:key="`type-${index}`"
# 如何使用
安装
pnpm add @plugin-light/webpack-loader-replace-vue-key -D
在 vue.config.js
中添加如下设置:
const { LOADER: replaceVueKey } = require('webpack-loader-replace-vue-key')';
module.export = {
chainWebpack(config) {
config.module
.rule('vue')
.test(/\.vue$/)
.use(replaceVueKey)
.loader(replaceVueKey)
.end();
}
}
← Vue 模板标签转换 动态引入组件转换 →