myvue
1.0.0
<html><head></head><body><div id="app"> <ul> <li>안녕하세요</li> <li>{hoge}</li> <li>{foo}</ li> <li>{bar}</li> </ul> <ul> <for records="{list}" var="item" > <li>{item}</li> </for> </for> ul> <input type="text" value="{hoge}" /> <input type="text" value="{foo}" /> <input type="text" value="{bar}" /> <input type="button" value="추가" onclick="{onclick} " /></div><script src="./lib.js"></script><script src="./main.js"></script></body></html>
new MyVue({ 모델: { hoge: 123, foo: 'yeee', bar: 'hello', list: [ 'aaa', 'bbb', ], onclick: function() { this.list.push(this. hoge) } }, 선택기: '#app',});