vue3 报错: ‘defineProps‘ is not defined no-undef

错误

在这里插入图片描述

解决方案

修改.eslintrc.js文件,在基根节点添加如下内容:

module.exports = {
    
    
  globals: {
    
    
    defineProps: 'readonly',
    defineEmits: 'readonly',
  },
}

猜你喜欢

转载自blog.csdn.net/lianghecai52171314/article/details/132425713