vue的样式中使用data或props中的变量
<template><div class="editing" :style="styleVar"></div></template>export default {props: ["editHeight"],computed: {styleVar() {return {"--edit-height": this.editHeight +
·
<template>
<div class="editing" :style="styleVar">
</div>
</template>
export default {
props: ["editHeight"],
computed: {
styleVar() {
return {
"--edit-height": this.editHeight + "px",
};
}
}
}
.editing {
width: 100%;
height: var(--edit-height);
}
或者页面初始化时直接使用
this.$el.style.setProperty("--edit-height", this.editHeight + "px");
更多推荐
已为社区贡献3条内容
所有评论(0)