美文网首页
2019-02-14 Vue.js 常用指令

2019-02-14 Vue.js 常用指令

作者: chenhbdl | 来源:发表于2019-02-14 11:17 被阅读0次

    v-model 一般用在表单元素上(input) 双向数据绑定
    循环
    v-for 使用 v-for="value in arr" value 为当前使用值得依赖 arr
    为数据源
    v-for="(k,v) in arr" 此时的arr为json k为key v 为 value
    事件
    v-on:click(mouseover/mouseout/dblclick.......) 绑定事件
    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <script src="https://unpkg.com/vue/dist/vue.js"></script> <style type="text/css"> .class1{ background-color: red; } </style> <body> <div id="vue_det"> <input type="button" value="提交" v-on:click="add" > <ul> <li v-for="value in arr">{{value}}</li> </ul> </div> </body> <script type="text/javascript"> var vm = new Vue({ el: '#vue_det', data: { arr:["1","2","3"], msg:"合理礼物" }, methods:{ add:function(){ this.arr.push("4"); } } }) </script> </html>

    相关文章

      网友评论

          本文标题:2019-02-14 Vue.js 常用指令

          本文链接:https://www.haomeiwen.com/subject/aswseqtx.html