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

vue-2

时间:2019-10-22 19:59:16      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:dex   code   mod   this   nbsp   htm   var   mode   gdi   

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <script src="https://cdn.bootcss.com/vue/2.6.10/vue.js"></script>
    
    <body>
        <div id="app">
            {{tex}}
        
            <hr />
            <div v-if="isok" >真出现</div>
            <div v-else>假出现</div>
            <hr />
            <button @click="add">+</button>{{count}}<button @click="jian">-</button>
            <hr />
            <ul>
                <li v-for="(item,index) in arr">{{index}}-----{{item}}</li>
            </ul>
            <hr />
            {{bangding}}
            请输入<input type="text" v-model="bangding" />
            <hr />
        </div>
        <script type="text/javascript">
            var vue=new Vue({
                el:"#app",
                data:{
                    tex:"文字",
                    isok:false,
                    count:0,
                    arr:["8","5","88","99"],
                    bangding:"",
                },
                
                methods:{
                    add:function(){
                        this.count++;
                    },
                    jian:function(){
                        this.count--;
                    }
                }
            });
        </script>

    </body>
</html>

 

vue-2

标签:dex   code   mod   this   nbsp   htm   var   mode   gdi   

原文地址:https://www.cnblogs.com/aomeng/p/11721892.html

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