博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
全局组件父子传参(父传子)
阅读量:5897 次
发布时间:2019-06-19

本文共 1106 字,大约阅读时间需要 3 分钟。

点击父组件里面的按钮可以控制子组件内的视图显示与隐藏

 

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <title>父组件控制子组件</title>

    <style>

        .show{

            width:100px;

            height: 100px;

            text-align: center;

            font-size: 20px;

            line-height: 100px;

            background-color: rgba(0,0,136,0.36);

        }

    </style>

</head>

<body>

<div id="app">

    <father></father>

</div>

<template id="father">

    <div>

        father

        <button @click="fhide">show/hide</button>

        {

{hidef}}

        <hr>

       <son :test="hidef"></son>

    </div>

</template>

<template id="son">

    <div>

    <div class="show" v-if="test">son{

{test}}</div>

        <!--这里的v-if的值test是由父组件传给子组件的-->

    <button @click="shide">显示/隐藏</button>

    </div>

</template>

<script src="vue.js"></script>

<script>

    Vue.component('father',{

        template:"#father",

        data(){

            return{

                hidef:true

            }

        },

        methods:{

            fhide(){

                this.hidef=!this.hidef;

            }

        }

    })

    Vue.component('son',{

        template:"#son",

        data(){

            return{

                hides:true

            }

        },

        methods:{

            shide(){

                this.hides=!this.hides;

            }

        },

        props:['test']

    })

    new Vue({

        el:"#app"

    });

</script>

</body>

</html>

由父到子

子组件通过props抛出一个自定义组件标签属性。

父组件通过子组件的组件标签属性将需要的 数据传递过去。

子组件通过抛出的标签属性来调用这个值。

 

转载于:https://www.cnblogs.com/ranyonsue/p/10570124.html

你可能感兴趣的文章
Win7 64位 php-5.5.13+Apache 2.4.9+mysql-5.6.19 配置
查看>>
spring mvc 和ajax异步交互完整实例
查看>>
不同页面之间实现参数传递的几种方式讨论
查看>>
程序员进阶之路—如何独当一面
查看>>
SpringMVC中ModelAndView addObject()设置的值jsp取不到的问题
查看>>
Prometheus : 入门
查看>>
使用 PowerShell 创建和修改 ExpressRoute 线路
查看>>
PHP如何学习?
查看>>
谈教育与成长
查看>>
jni c++
查看>>
快速集成iOS基于RTMP的视频推流
查看>>
在C#中获取如PHP函数time()一样的时间戳
查看>>
Redis List数据类型
查看>>
大数据项目实践(四)——之Hive配置
查看>>
Thread类源码解读(1)——如何创建和启动线程
查看>>
Bootstrap清除浮动的实现原理
查看>>
初学vue2.0-组件-文档理解笔记v1.0
查看>>
NG-ZORRO-MOBILE 0.11.9 发布,基于 Angular 7 的 UI 组件
查看>>
我就是一个救火员(DBA救援)
查看>>
Centos7安装Gitlab10.0
查看>>