直接生成模板 免去components注册组件这一步

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<div id="div1"></div>



var template = Vue.extend({
template: '<span>{{attr}}</span>'
})

new template({
el: "#div1",
data: {
attr: 123
}
})
2016-06-03

⬆︎TOP