Browse Source

支持BI.useContext

es6
guy 3 years ago
parent
commit
2454872af0
  1. 9
      examples/useContext.html

9
examples/useContext.html

@ -40,14 +40,17 @@
setInterval(function () {
context.toggle();
}, 1000);
BI.watch(context, "expand", function () {
label.setText(context.model.text);
});
// BI.watch(context, "expand", function () {
// label.setText(context.model.text);
// });
return {
type: "bi.label",
ref: function (_ref) {
label = _ref;
},
effect: function (w) {
w.setText(context.model.text)
},
text: function () {
return context.model.text;
}

Loading…
Cancel
Save