mvvm
mvvm copied to clipboard
剖析vue实现原理,自己动手实现mvvm
Results
12
mvvm issues
Sort by
recently updated
recently updated
newest added
var Observer = function Observer (value) { this.value = value; this.dep = new Dep(); this.vmCount = 0; def(value, '__ob__', this); if (Array.isArray(value)) { var augment = hasProto ? protoAugment :...
比如我在页面上 ``` new MVVM({ el: '#todoist_app', data: { input_due_date: '00月00日' }, methods: { } }) document.body.appendChild('{{input_due_date}}') ``` 在这种情况下,没有渲染input_due_date