demo 

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Vue</title>
  <script src="https://cdn.bootcss.com/vue/2.2.2/vue.min.js"></script>
</head>
<body>
<div >
  <div v-bind:style="{ color: activeColor, fontSize: fontSize + 'px' }">努力向上</div>
</div>

<script>
  new Vue({
    el: '#six',
    data: {
      activeColor: 'blue',
      fontSize: 20

    }
  })
</script>
</body>
</html>

  效果:
Vue.js style  (内联样式)

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-10
  • 2022-12-23
  • 2021-09-22
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-03-04
  • 2022-01-03
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案