多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
## 使用前先引入文件 ``` import ea55api_vue from 'ea55api_vue'; ``` api准备完的时候执行 ``` ea55api_vue.ready(function(){ api.toast({ msg: 'api准备完毕拉爱看', duration: 2000, location: 'bottom' }); }) ea55api_vue.ready().then(function(ret){ switch (ea55api_environ()) { case 'apicloud': //判断 apicloud 环境 api.alert({ title: '恭喜', msg: '可以正常使用apicloud的api方法', }, function(ret, err) { }); break; default: } }) ```