Vue 中的 .sync 修饰符有什么用

2020-05-04  本文已影响0人  云卷云舒听雨声

Vue 中的.sync 修饰符的功能是 : 当一个子组件改变了一个 prop 的值时,这个变化也会同步到父组件中所绑定。

我们通过一个场景来辅助理解一下。

<template>
  <div class="app">
    App.vue 我现在有 {{total}}
    <hr>
    <Child :money.sync="total"/>
  </div>
</template>

<script>
import Child from "./Child.vue";
export default {
  data() {
    return { total: 10000 };
  },
  components: { Child: Child }
};
</script>

Child.vue

<template>
  <div class="child">
    {{money}}
    <button @click="$emit('update:money', money-100)">
      <span>花钱</span>
    </button>
  </div>
</template>

<script>
export default {
  props: ["money"]
};
</script>

效果展示 :


由于这样的场景很常见,所以尤雨溪发明了.sync修饰符。
:money.sync="total"

等价于

:money="total" v-on:update:money="total=$event"

通过查看Vue.js官方文档 : .sync 修饰符了解到。从 2.3.0 起重新引入了 .sync 修饰符,但是这次它只是作为一个编译时的语法糖存在。它会被扩展为一个自动更新父组件属性的 v-on 监听器。

上一篇下一篇

猜你喜欢

热点阅读