Vue3 error: 'defineProps' is not defined no-undef

mistake

insert image description here

solution

Modify the .eslintrc.js file and add the following content to the base root node:

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

Guess you like

Origin blog.csdn.net/lianghecai52171314/article/details/132425713