vue .sync的使用

Posted ztgzlu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue .sync的使用相关的知识,希望对你有一定的参考价值。

在使用vue的. sync中,怎么都用不出来。

出来错误:

I Avoid mutating a prop directly since the value will be overuritten whenever the parent component re-renders.

查资料,说的都是vue2以上,取消了.sync..只能在vue1以下用.

可官方的资料中可以用呀: .sync 修饰符.

官方的不可能有问题呀.

于是,按照官方的一步步下去,发现.sync可以使用.但是子组件中要写,这个一定要写的,一定要写一定要写一定要写

this.$emit(update:title, newTitle)

title是要在父组件中改变的变量.

这样一写的话,在父组件中,引用子组件,.sync就启作用了

<text-document :title.sync="title"></text-document>

 

I Avoid mutating a prop directly since the value will be overuritten whenever the parent component re-renders.

以上是关于vue .sync的使用的主要内容,如果未能解决你的问题,请参考以下文章

vue 项目使用局域网多端访问并实时自动更新(利用 browser-sync)

vue .sync修饰符的使用

Vue2 .sync修饰符的应用

Vue2 .sync修饰符的应用

如何理解Vue的.sync修饰符的使用

vue sync