美文网首页
2018-09-19Vue切换

2018-09-19Vue切换

作者: 简单浪 | 来源:发表于2018-09-19 10:29 被阅读0次

    <div id="box">
    <p>{{mag}}</p>
    <button v-on:click="alt">按钮</button>
    </div>
    <script src="js/vue.js"></script>
    <script>
    new Vue({
    el:"#box",
    data:{
    mag:'hello word',
    flag:true
    },
    methods:{
    alt:function(){
    if(this.flag){
    this.mag='hello word'
    this.flag=false
    }else{
    this.mag='hello vue'
    this.flag=true
    }
    }
    }
    })
    </script>

    相关文章

      网友评论

          本文标题:2018-09-19Vue切换

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