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>
原文:http://www.cnblogs.com/fdxxiaobai/p/7719875.html
【说明】:本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!