API对象
2020-12-29 10:56 更新
api对象
兼容APICloud已有api对象所有函数及属性。参考API对象文档
api对象使用示例:
<template>
<view class='header'>
<text>{this.data.title}</text>
</view>
</template>
<script>
export default {
name: 'ApiTest',
apiready(){
api.toast({msg: '网络错误'});
this.data.title = '网络错误';
},
data(){
return {
title: 'Hello APP'
}
}
}
</script>
<style>
.header{
height: 45px;
}
</style>
以上内容是否对您有帮助:
← 指令
更多建议: