Vue v-bind的使用
1.src <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script src="../js/Vue.js" charset="utf-8"></script> <script type="text/javascript"> window.onload = function () { var vm = new Vue({ el: '#box', data: { url:'../img/1.png', w100:'100px', title:"这是图片" } }); } </script> </head> <body> <div id="box"> <img v-bind:src="url" v-bind:width="w100" v-bind:title="title"> <img :src="url" :width="w...