在vue中改变字体大小,px不起作用,em 和 rem 都可以生效

Vue.component('buttons',{
            data: function(){
                return{
                    count:0
                }
            },
            template:'<h1 @click="count+=99" style="font-size: 12em;color: red;">我对你的爱只有上限,没有下限!!!{{count}}</h1>'
        })

如上图中加下划线的位置,style="font-size:12em",生效,但是如果改成px就不生效

posted @ 2019-12-30 09:24  大云之下  阅读(4026)  评论(0编辑  收藏  举报
大云之下