首页 > 其他 > 详细

组件-全局组件和局部组件

时间:2018-01-30 18:31:05      阅读:174      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

</head>
<body>
<div id="seg1">
    <alert></alert>
    <ttt></ttt>
</div>
<div id="seg2">
    <alert></alert>
    <ttt></ttt>
</div>
<div id="seg3">
    <texts></texts>
</div>


<script src="../lib/vue.js"></script>
<script src="js/main.js"></script>
</body>
</html>
Vue.component("ttt", {
    template: "<button @click=\"on_click\">全局弹弹弹</button>",
    methods: {
        on_click: function () {
            alert("Yo.")
        }
    }
});


var obj = {
    template: "<button @click=\"on_click\">全局弹弹弹</button>",
    methods: {
        on_click: function () {
            alert("Yo.")
        }
    }
}




new Vue({
    el: "#seg1",
    components: {
        "alert": {
            template: "<button @click=\"on_click\">弹弹弹</button>",
            methods: {
                on_click: function () {
                    alert("Yo.")
                }
            }
        }
    }
});
new Vue({
    el: "#seg2",
    components: {
        "alert": {
            template: "<button @click=\"on_click\">弹弹弹</button>",
            methods: {
                on_click: function () {
                    alert("点你大爷")
                }
            }
        }
    }
});
new Vue({
    el:"#seg3",
    components:{
        "texts":obj
    }
})

 

组件-全局组件和局部组件

原文:https://www.cnblogs.com/52-qq/p/8386296.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!