美文网首页
vue component组件

vue component组件

作者: 水母云 | 来源:发表于2019-01-17 15:41 被阅读0次

使用vue的component组件实现动态点击按钮功能:


实现效果:单击哪个按钮,则增加一个数值
<!DOCTYPE html>
<html>
<head>
    <title>vue按钮</title>
</head>
<body>
    <script src="https://unpkg.com/vue/dist/vue.min.js"></script>
    <div id="app">
        <my-component></my-component>
        <my-component></my-component>
        <my-component></my-component>
    </div>
    <script>
        Vue.component('my-component', {
            template: '<button @click="counter++">{{ counter }}</button>',
            data: function() {
                // 给组件返回一个新的data对象,实现独立
                return {
                    counter: 0
                };
            }
        });
        // 挂载
        var app = new Vue({
            el: '#app'
        })
    </script>
</body>
</html>

相关文章

网友评论

      本文标题:vue component组件

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