<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>