handleResize() {
// let MutationObserver = window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver
// let element = document.querySelector('.resize-element')
// console.log(
// 'elemet',element
// );
// this.observer = new MutationObserver((mutationList) => {
// for(let mutation of mutationList) {
// console.log('mutation.target',mutation);
// console.log('变化了嘛', mutation.target.clientHeight)
// this.resizeHeight = mutation.target.clientHeight - 40
// }
// let width = getComputedStyle(element).getPropertyValue('width')
// let height = getComputedStyle(element).getPropertyValue('height')
// if(width === this.recordOldValue.width && height === this.recordOldValue.height) return
// this.recordOldValue = {
// width,
// height
// }
// this.firedNum += 1
// })
// this.observer.observe(element, {
// attributes: true,
// attributeFilter: ['style'],
// attributeOldValue: true
// })
},