在vue中改变字体大小,px不起作用,em 和 rem 都可以生效时间:2024-02-25 10:10:49 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就不生效