Vue 获取 Width 和 Height 发表于 2017-11-23 | 分类于 frontend , vue 获取Div的 Width 和 Height1234<div> <div id="bg-prev" ref="el_div"> </div><div> 12345678mounted() { this.getWindowWidth()},methods: { getWindowWidth() { this.x = this.$refs.el_div.clientWidth; }}