LoginSignup
0
0

More than 1 year has passed since last update.

配列構文で2つのstyleを適用させる

Last updated at Posted at 2021-05-05

【1】文章内の標準フォントサイズ 60px
【2】文字赤背景色青

この2つを配列で適応さえる。

<script src="https://cdn.jsdelivr.net/npm/vue@2.6.12/dist/vue.js"></script>

<div id="app">
<h1 :style="[styleObject, baseStyles]">HELLO<h1>
</div>
  new Vue({
    el: '#app',
    data: {
      styleObject: {
        color: 'red',
        'background-color': 'blue'
        },
      baseStyles: {
      fontSize: '60px'
        }
      }
  })

20210505-231537.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0