Browse Source

Merge remote-tracking branch 'remotes/origin/BI4.1'

# Conflicts:
#	dist/bundle.min.js
es6
guy 7 years ago
parent
commit
90d48a783c
  1. 14
      demo/js/config/fix.js
  2. 14
      dist/demo.js
  3. 2
      dist/fix/fix.js

14
demo/js/config/fix.js

@ -94,37 +94,37 @@ Demo.FIX_CONFIG = [{
text: "state属性", text: "state属性",
value: "demo.fix_state" value: "demo.fix_state"
}, { }, {
id: 78, id: 73,
pId: 7, pId: 7,
text: "计算属性", text: "计算属性",
value: "demo.fix_computed" value: "demo.fix_computed"
}, { }, {
id: 73, id: 74,
pId: 7, pId: 7,
text: "store", text: "store",
value: "demo.fix_store" value: "demo.fix_store"
}, { }, {
id: 74, id: 75,
pId: 7, pId: 7,
text: "watcher且或表达式", text: "watcher且或表达式",
value: "demo.fix_watcher" value: "demo.fix_watcher"
}, { }, {
id: 75, id: 76,
pId: 7, pId: 7,
text: "watcher星号表达式", text: "watcher星号表达式",
value: "demo.fix_global_watcher" value: "demo.fix_global_watcher"
}, { }, {
id: 76, id: 77,
pId: 7, pId: 7,
text: "context", text: "context",
value: "demo.fix_context" value: "demo.fix_context"
}, { }, {
id: 77, id: 78,
pId: 7, pId: 7,
text: "一个混合的例子", text: "一个混合的例子",
value: "demo.fix" value: "demo.fix"
}, { }, {
id: 78, id: 79,
pId: 7, pId: 7,
text: "场景", text: "场景",
value: "demo.fix_scene" value: "demo.fix_scene"

14
dist/demo.js vendored

@ -5268,37 +5268,37 @@ Demo.FIX_CONFIG = [{
text: "state属性", text: "state属性",
value: "demo.fix_state" value: "demo.fix_state"
}, { }, {
id: 78, id: 73,
pId: 7, pId: 7,
text: "计算属性", text: "计算属性",
value: "demo.fix_computed" value: "demo.fix_computed"
}, { }, {
id: 73, id: 74,
pId: 7, pId: 7,
text: "store", text: "store",
value: "demo.fix_store" value: "demo.fix_store"
}, { }, {
id: 74, id: 75,
pId: 7, pId: 7,
text: "watcher且或表达式", text: "watcher且或表达式",
value: "demo.fix_watcher" value: "demo.fix_watcher"
}, { }, {
id: 75, id: 76,
pId: 7, pId: 7,
text: "watcher星号表达式", text: "watcher星号表达式",
value: "demo.fix_global_watcher" value: "demo.fix_global_watcher"
}, { }, {
id: 76, id: 77,
pId: 7, pId: 7,
text: "context", text: "context",
value: "demo.fix_context" value: "demo.fix_context"
}, { }, {
id: 77, id: 78,
pId: 7, pId: 7,
text: "一个混合的例子", text: "一个混合的例子",
value: "demo.fix" value: "demo.fix"
}, { }, {
id: 78, id: 79,
pId: 7, pId: 7,
text: "场景", text: "场景",
value: "demo.fix_scene" value: "demo.fix_scene"

2
dist/fix/fix.js vendored

@ -1159,7 +1159,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
return vm.$$state[key]; return vm.$$state[key];
} }
if (vm.$$model && key in vm.$$model) { if (vm.$$model && key in vm.$$model) {
return vm.$$model; return vm.$$model[key];
} }
var p = vm._parent; var p = vm._parent;
while (p) { while (p) {

Loading…
Cancel
Save