vue移动端适配
App.vue
<template>
<div id="app">
<router-view />
</div>
</template>
<script>
export default {
name: "App",
mounted() {
//移动端适配
var html = document.getElementsByTagName("html")[0];
var owidth =
document.body.clientWidth || document.documentElement.clientWidth;
html.style.fontSize = (owidth / 375) * 12 + "px";
},
};
</script>
<style >
#app {
width: 100%;
height: 100%;
}
</style>
正道的光终将来临,当太阳升起的时候,光芒总会普照大地温暖人间。些许的阴霾也终会有被阳光洒满的一天

浙公网安备 33010602011771号