base.css文件内容
html {
font-size: 100px;
}
body {
font-size: .12rem;
}
将除了base.css的body fontsize,其余文档的px改为rem,
在public的index.html文件里面的head部分加上
<script>
// cllientWidth是设备宽度
var width = document.documentElement.cllientWidth || document.body
var ratio = (width / 375);// 375是当前开发设备的宽度
var fontSize = 100 * ratio;
document.getElementByIdTagName('html')[0].style['font-size'] = fontSize + 'px'
</script>