简介
该用户还未填写简介
擅长的技术栈
未填写擅长的技术栈
可提供的服务
暂无可提供的服务
解决Vue请求 ‘No 'Access-Control-Allow-Origin' header is present on the requested resource’错误
如果我们用VueResouce直接请求,这样写(以豆瓣api为例):this.$http.get('https://api.douban.com//v2/movie/top250').then((response) => {this.movie = response.data;console.log(this.movie);});就会报错:...
vue中button中vue事件处理:@click.prevent.self和@click.self.prevent区别
看到这个@click.native.prevent有点懵逼,然后查了点资料,还是零零散散的资料。。自己总结一下1.在封装好的组件上使用,所以要加上.native才能click2.prevent就相当于…event.preventDefault()所以@submit.native.prevent是用来阻止默认行为的 ;...
到底了