gpt4 book ai didi

vue.js - Vuejs如何将父类传递给模板中的子组件

转载 作者:行者123 更新时间:2023-12-04 08:50:25 25 4
gpt4 key购买 nike

我试图记住如何通过 parent 的:class绑定(bind)到模板中的特定子组件。例如:

// parent-component.vue
<template>
<child-component :class="['foo', bar, 'baz']">
</template>
// child-component.vue
<template>
<div class="dont-want-classes-here">
<h1 class="not-here-either">Someting v Important</h1>
<sub-component :class="['want-parent-classes in-here', ...$parent.classes]">
</div>
</template>
我是否需要为此目的创建一个新 Prop ?我可以从组件中访问 Vue 实例的特定部分吗?
谢谢

最佳答案

Do I need to create a new prop just for that purpose?


是的。 Vue 没有提供自定义类和样式属性如何应用于模板的方法。它将始终将它们应用于根元素,您无法更改它。
但是,如果它是一个功能组件,那么您可以这样做。但这不适用于这里。

Is there a specific part of the Vue instance I can access from within the component?


您可以直接从 vnode 访问该类:
this.$vnode.data.staticClass  // for class="static"
this.$vnode.data.class // for :class="dynamic"

关于vue.js - Vuejs如何将父类传递给模板中的子组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64129495/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com