Vue.js style (内联样式)
Posted 1点
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue.js style (内联样式)相关的知识,希望对你有一定的参考价值。
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 id="six"> <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 (内联样式)的主要内容,如果未能解决你的问题,请参考以下文章