作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个名为 confirm-document
的文件组件看起来像这样:
Sandbox
<template>
<v-dialog>
<template v-slot:activator="{ on }">
<v-btn v-bind="$attrs" :class="activatorClass" v-on="on">{{
title
}}</v-btn>
</template>
<v-card>
<v-card-title>{{ title }}</v-card-title>
<v-card-text><slot></slot></v-card-text>
</v-card>
</v-dialog>
</template>
<script>
export default {
name: "ConfirmDocument",
props: {
title: String,
activatorClass: {},
},
};
</script>
所以当我然后使用这个组件时:
<ConfirmDocument
class="useless-class"
activator-class="mt-4 ml-n4"
title="Consent"
> Document Content </ConfirmDocument>
Sandbox
v-dialog
,它最终成为一个不可见的 div,内部没有任何内容,并且激活器和模态都作为兄弟节点附加。
activator-class
我宣布的 Prop 实际上工作正常。但是我很好奇是否有办法改变组件的类和样式属性所绑定(bind)的元素,以便我可以使用类来代替?
最佳答案
这已在 Vue.js 中得到修复v3 ref
对于 Vue.js v2 , 你可以试试这个
查看 v-bind
和 attrs
下面的计算属性
<template>
<v-dialog>
<template v-slot:activator="{ on }">
<v-btn v-bind="attrs" v-on="on">{{
title
}}</v-btn>
</template>
<v-card>
<v-card-title>{{ title }}</v-card-title>
<v-card-text><slot></slot></v-card-text>
</v-card>
</v-dialog>
</template>
<script>
export default {
name: "ConfirmDocument",
inheritAttrs: false, // <- added just for safety
props: {
title: String,
},
computed: {
attrs() {
const attrs = { ...self.$attrs }
// adding class and style for `v-bind`
attrs.class = self.$vnode.data.staticClass
attrs.style = self.$vnode.data.staticStyle
return attrs
}
}
};
</script>
解释 - 在 Vue.js 版本 2.x.x 中,
$attrs
不包括
class
和
style
(
ref ) 但是在很多情况下,我们希望将所有 Prop 连同类和样式一起传递到另一个组件中,所以
$attrs
应该有
class
和
style
他们确实在 vue.js 的第 3 版中添加了其中的内容。
vnode
并使用
v-bind
将其传递给其他组件.
ConfirmDocument
内的另一个组件中。直接来自父(或调用者)组件
关于css - 如何将 vue 组件上的类和样式属性传递给 $attrs 等不同的元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66329959/
我是一名优秀的程序员,十分优秀!