码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2019-04-10 13:47:00      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:col   png   vue.js   app   bind   net   gre   .net   obj   

<!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 绑定样式

标签:col   png   vue.js   app   bind   net   gre   .net   obj   

原文地址:https://www.cnblogs.com/nongzihong/p/10682583.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!