vue笔记之$attr

2024-01-09 23:40:06

含义

$attr是一个对象,它包含了父组件传递给子组件但子组件没有显式声明的props

作用

父亲传数据到孙子

示例

父组件
<template>
    <child :name="name" :age="age" :infoObj="infoObj" />
</template>
<script>
    import Child from '../components/child.vue'

    export default {
        name: 'father',
        components: { Child },
        data () {
            return {
                name: 'Lily',
                age: 22,
                infoObj: {
                    from: '上海',
                    job: 'policeman',
                    hobby: ['reading', 'writing', 'skating']
                }
            }
        }
    }
</script>
子组件
<template>
    <grand-son :height="height" :weight="weight" v-bind="$attrs" />
</template>

<script>
    import GrandSon from '../components/grandSon.vue'
    export default {
        name: 'child',
        components: { GrandSon },
        props: ['name'],
        data() {
            return {
                height: '180cm',
                weight: '70kg'
            };
        },
        created() {
            console.log(this.$attrs);
            // 结果:age, infoObj, 因为父组件共传来name, age, infoObj三个值,由于name被 props接收了,所以只有age, infoObj属性
        }
    }
</script>
孙组件
<template>
    <div>
        {{ $attrs }}
    <div>
</template>

<script>
    export default {
        props: ['weight'],
        created() {
            console.log(this.$attrs); // age, infoObj, height
        }
    }
</script>

文章来源:https://blog.csdn.net/weixin_38230961/article/details/135491421
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。