改变hello的font-size后 文字的大小没有变化 这是为什么??控制台我看到hello的font-size的rem是有变化的
<template>
<div class="hello">
{{msg}}
</div>
</template>
<script>
export default {
name: 'Index',
data () {
return {
msg: 'Welcome to Your Vue.js App'
}
}
}
</script>
<style scoped>
.hello{
font-size: 50px;
}
</style>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…