首页 > 移动平台 > 详细

vue移动端适配

时间:2021-07-31 22:22:37      阅读:23      评论:0      收藏:0      [点我收藏+]
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>

vue移动端适配

原文:https://www.cnblogs.com/sjruxe/p/15084964.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!