摘要: 属性绑定 html <div v-bind:title="title">hello world</div> js js new Vue({ el:'#root', data:{ title:'this is hello world' } }) 所以我们注意到一个点,只要是vuejs的指令,后面的就不 阅读全文
posted @ 2018-08-27 07:00 wzndkj 阅读(1612) 评论(0) 推荐(1) 编辑
摘要: <body> <div id='root'>{{number}}</div> <script> new Vue({ el:'#root', data:{ msg:'hello world', number:123 } }) </script> </body> 数据写法 {{number}} //这个 阅读全文
posted @ 2018-08-27 06:40 wzndkj 阅读(394) 评论(0) 推荐(0) 编辑