🆕
【Vue3】CSSでv-bindを使える!
はじめに
Vueの単一ファイルコンポーネント(SFC)でのCSSの機能において、v-bind
を使用してCSS内で動的な値をバインドすることができるのを最近知りました😅
使ってみたので備忘録です。
サンプルコード
<template>
<div class="text">
CSSでv-bindを使えるだと...
</div>
</template>
<script setup>
import { ref } from 'vue';
const color = ref('red');
</script>
<style>
.text {
color: v-bind(color);
}
</style>
参考
Discussion