动态改变表格宽度·

created() { this.$refs = JSON.parse(JSON.stringify(this.$refs)) this.$nextTick(() => { this.tableWidth = this.$refs['discuntTable'].offsetWidth - 48 }) window.addEventListener('resize', this.setTableWidth) }, methods: { // 动态设置表格宽度 setTableWidth() { let oWidth = document.querySelector('.fundcombConfig .config-content').offsetWidth this.tableWidth=oWidth-48 }, }

 

你可能感兴趣的:(vue)