1. 程式人生 > >vue mounted 內找不到dom

vue mounted 內找不到dom

vue生命週期
  mounted () {
  },

如果生命週期還是不好用,在語句外套用this.$nextTick方法
this.$nextTick(function () {

  this.x= document.getElementsByClassName('x')[0]
})