1. 程式人生 > 其它 >vue的樣式中使用變數及運用

vue的樣式中使用變數及運用

技術標籤:javaScriptvuejsvue

<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);
}