一九年十二月整理

vue的返回上一级根据情况而定,不全是this.$router.go(-1),有时需要到固定位置

if (window.history.length <= 1) {
                this.$router.push({ path: '/okrSystem/management/objectives/objectivesMap' });
                return false;
            } else {
                this.$router.go(-1);
            }

布局的问题 在内容不满屏的时候header底部依然能够在底部,无论屏幕怎么缩放,也都是底部

min-height: calc(100vh - 65px);

设置动态的高度


                    
                
                
       appMainStyle(){
                return {
        'min-height': (document.documentElement.clientHeight - 120) + 'px'
      }
}

element中的表格中的文字经常会太多

:show-overflow-tooltip="true",该属性可以让内容在一行显示,如果显示不下时,显示...,并且鼠标划过时显示全部文字。

你可能感兴趣的:(javascript,vue.js)