码迷,mamicode.com
首页 > 其他好文 > 详细

vue 获取dom元素

时间:2017-11-22 15:21:59      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:结果   height   for   client   ext   获取   vue   efs   cli   

<template>
  <div style="display: block;" ref="abc">
    <!-- ... -->
  </div>
</template>

<script>
export default {
  mounted: function () { // 此处不能用beforeMounte
    console.log(this.$refs.abc.style.cssText)
  }
}
</script>

输出结果是 display: block;

this.$refs.abc.getBoundingClientRect().height 获取高度

vue 获取dom元素

标签:结果   height   for   client   ext   获取   vue   efs   cli   

原文地址:http://www.cnblogs.com/handsome-jm/p/7879123.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!