🆕

【Vue3】CSSでv-bindを使える!

2023/11/13に公開

はじめに

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>

参考

https://vuejs.org/api/sfc-css-features.html#v-bind-in-css

Discussion