<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");
Logo

前往低代码交流专区

更多推荐