module.exports = { rules: { /** * 禁止出现重复的属性 */ 'vue/no-duplicate-attributes': [ 'error', { allowCoexistClass: true, allowCoexistStyle: false, }, ], }, }