想請問各位大大,
如何將Vue的變數,直接綁定到CSS呢?
開發環境是Vite、Vue3
<script setup>
import { ref } from 'vue'
const width = ref('900px')//將這個變數
</script>
<template>
<div class="rwdClass">2222</div>
</template>
<style scoped>
.rwdClass {
width: width; //帶入這裡
}
</style>
除了楼上给出的答案,你还可以
<div :style="{'--width': width}""></div>
.xxx {
width: var(--width);
}