zoukankan      html  css  js  c++  java
  • 子组件传递给父组件数据

    来自书籍《vue.js实战》
    子组件使用$emit()触发事件,父组件用v-on来监听子组件事件
    $emit('自定义事件名',传给父组件的数据)
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>
        <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
    </head>
    </head>
    <body>
        <div id="app">
            <p>总数:{{total}}</p>
            <my-component @increase1="handleGetTotal" @reduce="handleGetTotal"></my-component>
        </div>
        <script>
            Vue.component('my-component',{
                template:'
                <div>
                <button @click="handleIncrease">+1</button>
                <button @click="handleReduce">-1</button>
                </div>',
                data:function(){
                    return {
                        counter:0
                    }
                },
                methods:{
                    handleIncrease:function(){
                        this.counter++;
                        this.$emit('increase1',this.counter);
                    },
                    handleReduce:function(){
                        this.counter--;
                        this.$emit('reduce',this.counter);
                    }
                }
            }
            );
            var v=new Vue({
                el:"#app",
                data:{
                    total:0
                },
                methods:{
                    handleGetTotal:function(total){
                        this.total=total
                    }
                }
            });
        </script>
    </body>
    </html>
  • 相关阅读:
    利用国内的源安装 Python第三方库
    Python 算法(1) 快速排序
    Python 算法(2) 哈夫曼编码 Huffman Encoding
    Python sql注入 过滤字符串的非法字符
    tesseract中文语言文件包 下载
    python 多线程爬虫 实例
    Python 爬虫实例(5)—— 爬取爱奇艺视频电视剧的链接(2017-06-30 10:37)
    Django的ORM中如何判断查询结果是否为空,判断django中的orm为空
    Python 爬虫实例(4)—— 爬取网易新闻
    NLTK在自然语言处理
  • 原文地址:https://www.cnblogs.com/kukai/p/12907699.html
Copyright © 2011-2022 走看看