vue 获取屏幕宽高 width height

函数封装:

/**
 * 获取屏幕宽高
 */
Vue.prototype.getViewportSize = function(){
  return {
    width: window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth,
    height: window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight
  };
};

.

posted @ 2018-04-22 10:02  每天都要进步一点点  阅读(2032)  评论(0编辑  收藏  举报