1. 程式人生 > 其它 >vue v-bind:style詳解

vue v-bind:style詳解

技術標籤:vue常用例子vue.js

vue v-bind:style詳解

<div id="app">
  <div v-bind:style="[baseStyles, overridingStyles]">娃哈哈,娃哈哈</div>
</div>
<script>
new Vue({
  el: '#app',
  data: {
    baseStyles: {
      color: 'green',
      fontSize: '30px'
    },
	overridingStyles:
{ 'font-weight': 'bold' } } }) </script>

效果如下:
在這裡插入圖片描述