## 使用前先引入文件
```
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:
}
})
```