在APP.vue里面设置这个 document.addEventListener('DOMContentLoaded',()=>{ const html=document.querySelector('html') let htmlWidth = document.documentElement.clientWidth || document.body.clientWidth; let fontSize=htmlWidth/10 fontSize=fontSize>50?50:fontSize html.style.fontSize=fontSize+'px' }) 在i