【Vue】问题:‘defineProps‘ is not defined no-undef

问题描述

<script setup>
const props = defineProps({
    
    
  config: Object
})
</script>

提示

'defineProps' is not defined  no-undef

解决方法

在.eslintrc.js文件中添加

module.exports = {
    
    
  env: {
    
    
    'vue/setup-compiler-macros': true
  }
}

猜你喜欢

转载自blog.csdn.net/shentian885/article/details/126453294