axios和vue用$refs属性获取dom
Posted 小白辕客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了axios和vue用$refs属性获取dom相关的知识,希望对你有一定的参考价值。
vue-resource更换为axios
npm install axios
/*main.js*/
import axios from ‘axios‘
Vue.prototype.$ajax = axios
/*components*/
import axios from ‘axios‘
export default {
created () {
axios.get(‘./static/data.json‘).then(res => {
})
}
}
获取DOM
<div class="tab" ref="domList">
</div>
<script>
created () {
this.$nextTick(() => {
console.log(this.$refs.domList)
})
}
</script>
以上是关于axios和vue用$refs属性获取dom的主要内容,如果未能解决你的问题,请参考以下文章