IE edge 下 clientWidth 为 0 的坑,Chrome 正常

在IE下,渲染的 dom 元素初始 clientWidth 为 0,而 scrollWidth 有效。
而 chrome 表现则为一致。

Code

const tableWrapper = this.$refs.tableWrapper
const { scrollWidth, clientWidth } = tableWrapper
console.log(scrollWidth, clientWidth)

Chrome

IE edge

posted @ 2019-01-16 15:14  月光宝盒造梦师  阅读(503)  评论(0编辑  收藏  举报