Loading

vue单页面简单处理浏览器缩放

适合登录页面等单独的页面处理浏览器缩放

 mounted () {
    window.onresize = () => {
      this.$nextTick(() => {
        const el = document.querySelector('.login-wrapper')
        el.style.zoom = String(document.body.offsetWidth / 1920)
      })
    }
  },
posted @ 2022-07-19 10:25  资深if-else侠  阅读(226)  评论(0编辑  收藏  举报