「Vue.js」v-bindでstyleを指定するサンプル

2022年2月23日

環境
windows10 Home 64bit
Vue.js 3.0.0
Apache 2.4.43
chrome 98.0.4758.102
書式
<div v-bind:style="{ color: 変数1, fontSize: 変数2}">
「v-bind:style」を使用してv-bindでstyleを指定します。

使用例

<!DOCTYPE html>
<html lang="ja">

<head>
  <meta charset="utf-8">
  <title>v-bindでstyleを指定するサンプル</title>
   <script src="https://unpkg.com/vue@next"></script>

</head>
<body>
  <div id="app" >
      <div v-bind:style="{ color: cr, fontSize: fs}">スタイルを指定する</div>
  </div>
  <script>
    const cft = {
      data() {
        return {
          cr: "skyblue",
          fs: "44px",
        }
      }
    }
    Vue.createApp(cft).mount('#app')

  </script>
</body>

</html>

結果
divの内容は指定styleの内容が適応されます。

Vue.js

Posted by arkgame