Vue 使用v-bind:style 绑定样式

Posted nongzihong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue 使用v-bind:style 绑定样式相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
    </head>
    <body>
        <div id="app">
            <div v-bind:style="{ color: activeColor, fontSize: fontSize + ‘px‘ }">好好学习</div>
            <div v-bind:style="styleObject">天天向上</div>
        </div>
    </body>
    <script>
        var vm = new Vue({
            el: #app,
            data: {
                activeColor: blue,
                fontSize: 30,
                styleObject: {
                    color: green,
                    fontSize: 50px
                }
            }
        })
    </script>
</html>

效果:

技术图片

 

以上是关于Vue 使用v-bind:style 绑定样式的主要内容,如果未能解决你的问题,请参考以下文章

v-bind指令动态绑定内联样式(style)

VueJs之样式绑定

Vue.js 内联样式绑定style

Vue动态样式你不会吗

Vue动态样式你不会吗

Vue动态样式你不会吗