问题描述

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

提示

'defineProps' is not defined  no-undef

解决方法

在.eslintrc.js文件中添加

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