vue3 css引用js变量

<template>
  <div class="text">hello</div>
</template>

<script setup>
import { ref } from "vue";
const customTheme = ref({
    color: 'red'
});
</script>

<style>
.text {
  color: v-bind("customTheme.color");
}
</style>
posted @ 2023-05-09 14:54  Chaplink  阅读(132)  评论(0编辑  收藏  举报