摘要:
在index.html中引入高德地图后,报错 ‘AMapUI‘ is not defined , ‘AMap‘ is not defined‘ 先是试了把高德地图的引用放到body里发现没有用,后查明在在.eslintrc.js中配置如下 "globals": { "AMap": "true", " 阅读全文
摘要:
axios是一个库,并不是vue中的第三方插件,使用时不能通过Vue.use()安装插件,需要在原型上进行绑定, 例如以下写法是vue2引入axios的写法 import Vue from 'vue' import axios from ‘axios’ Vue.prototype.$http = a 阅读全文