开发者问题收集

Vue 3:如何使用 Composition API 正确更新组件 props 值?

2021-11-11
24248

我有类似这样的组件:

<template>
  <div>
    <p>Current coords: <strong>{{ coords }}</strong></p>
    <button type="button" @click="updateCoords">
  </div>
</template>
<script>
export default {
  props: {
    coords: {
      type: Array,
      required: true
    }
  },
  setup(props) {
    const updateCoords = () => {
      props.coords = [38.561785, -121.449756]
      // props.coords.value = [38.561785, -121.449756]
    }
    return { updateCoords }
  },
}
</script>

我尝试使用 updateCoords 方法更新 prop coords 值,但收到错误消息:

Uncaught TypeError: Cannot set properties of undefined (setting 'coords')

在我的情况下,如何正确更新 props 值?

2个回答

Props 是只读的:
https://v3.vuejs.org/guide/component-props.html#one-way-data-flow

如果您想要对 props 进行双向绑定,则需要实现 v-model 模式:
https://v3-migration.vuejs.org/breaking-changes/v-model.html#_3-x-syntax

<template>
  <div>
    <p>Current coords: <strong>{{ coords }}</strong></p>
    <button type="button" @click="updateCoords">
  </div>
</template>
<script>
export default {
  props: {
    modelValue: {
      type: Array,
      required: true
    }
  },
  emits: ['update:modelValue'],
  setup(props, {emit}) {
    const updateCoords = () => {
        emit('update:modelValue', [38.561785, -121.449756])
    }
    return { updateCoords }
  },
}
</script>
Thomas
2021-11-11

如果您想更新 props 并在 vue 3 中更改它,您必须根据您的代码像这样正确编写代码:

<template>
  <div>
    <p>Current coords: <strong>{{ coords }}</strong></p>
    <button type="button" @click="updateCoords">
  </div>
</template>
<script>
export default {
  props: {
    componentPropsName: {
      type: Array,
      required: true
    }
  },
  emits: ['update: componentPropsName'],
  setup(props, {emit}) {
    const updateCoords = () => {
      emit('update:componentPropsName', [38.561785, -121.449756])
    }
    return {updateCoords}
  },
}
</script>

要点 是在父组件中的组件中编写您的 prop,如下所示:

//parent component 
<child-component v-model:component-props-name="value"/>
Mohammadreza Khalilikhorram
2023-11-01