We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a46e15 commit f64e651Copy full SHA for f64e651
src/compiler/compile.js
@@ -524,7 +524,7 @@ function makePropsLinkFn (props) {
524
// one time binding
525
value = vm.$parent.$get(prop.parentPath)
526
if (_.assertProp(prop, value)) {
527
- vm.$set(path, value)
+ vm._data[path] = value
528
}
529
} else {
530
// dynamic binding
@@ -541,7 +541,7 @@ function makePropsLinkFn (props) {
541
// literal, cast it and just set once
542
value = _.toBoolean(_.toNumber(prop.raw))
543
544
545
546
547
0 commit comments