码迷,mamicode.com
首页 > 其他好文 > 详细

vue2.X v-model 指令

时间:2017-10-02 11:20:27      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:json   function   技术分享   xxxx   highlight   this   ext   vue2   fun   

1.v-model指令 

<!DOCTYPE html>
<html>
<head>
    <title></title>
    <script src="https://unpkg.com/vue/dist/vue.js"></script>
    <script type="text/javascript">
        window.onload = function(){
            var vm = new Vue({
                el:‘#box‘,
                data:{
                    msg:‘Hello Vue!‘
                }
            });
        }
    </script>
</head>
<body>
    <div id="box">
        <input type="text" v-model="msg"/><br/>
        {{msg}} 
    </div>
</body>
</html>

Vue控制id="box"这个DIV元素,同时在 HTML模板上使用双花括号{{xxxx}}语法,来访问data中定义的数据。
通过v-model 指令,我们把msg 数据绑定到了input文本框,我们修改文本框的值,发现msg 数据改变了。

 

2.注意:定义的数据是数组或者json

<!DOCTYPE html>
<html>
<head>
    <title></title>
    <script src="https://unpkg.com/vue/dist/vue.js"></script>
    <script type="text/javascript">
        window.onload = function(){
            var vm = new Vue({
                el:‘#box‘,
                data:{
                    msg:‘Hello Vue!‘,
                    arr:[‘1‘,‘2‘,‘3‘],
                    json:{a:‘a‘,b:‘b‘}
                },
                methods:{
                    getData(){
                        console.log(this.msg);
                    }
                }
            });
        }
    </script>
</head>
<body>
    <div id="box">
        <input type="text" v-model="msg" @input="getData"/><br/>
        {{msg}} <br/>
        {{arr}} <br/>
        {{json}}

    </div>
</body>
</html>

 

效果图:

技术分享

.

vue2.X v-model 指令

标签:json   function   技术分享   xxxx   highlight   this   ext   vue2   fun   

原文地址:http://www.cnblogs.com/crazycode2/p/7619800.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!