其他分享
首页 > 其他分享> > vue3.0 sync属性变化

vue3.0 sync属性变化

作者:互联网

.sync使用方法改变

.sync 的部分替换为 v-model

  1. 带参数的 v-model

2.x

<ChildComponent :title.sync="pageTitle" />

3.x

<ChildComponent v-model:title="pageTitle" />
  1. 不带参数的 v-model

3.x

<ChildComponent v-model:title="pageTitle" />
export default {
  props: {
    modelValue: String // 以前是`value:String`
  },
  emits: ['update:modelValue'],
  methods: {
    changePageTitle(title) {
      this.$emit('update:modelValue', title) // 以前是 `this.$emit('input', title)`
    }
  }

标签:String,title,sync,update,vue3.0,model,modelValue,属性
来源: https://www.cnblogs.com/shiazhen/p/14989289.html