Unexpected mutation of “xxx“ prop.(eslintvue/no-mutating-props)
eslint
校验报这个错,其实是Vue的单向数据流的概念,因为识别到子组件中修改了props值
。
错误示例
<template>
<el-input v-model="name" />
</template>
<script setup>
const props = defineProps({
name: {
type: String,
default: ''
}
})
</script>
小于 1 分钟