<template>
<h1>{{ msg }}</h1>
</template>
<script setup>
const msg = 'Hello World!'
const color = "red"
</script>
<style scoped>
h1 {
/* color: v-bind(color); */
}
</style>
When I commented the code of style css variable injection, the css vars code will not be generated on the style.
It will generate css vars code on the style.