使用v-bind() in CSS <template> <div class="text">hello</div> </template> <script setup> import { reactive } from 'vue' const state = reactive({ color:red, }) </script> <style> .text { color: v-bind('state.color'); } </style>