uni-app 功能实现
Posted 前端便当
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uni-app 功能实现相关的知识,希望对你有一定的参考价值。
功能一: 页面返回键
原始:
<button type="primary" @click="back">返回</button>
back() {
this.$router.back(-1);
},
uniapp:
<button type="primary" @tap="back">返回</button>
back(){
uni.navigateBack();
}
以上是关于uni-app 功能实现的主要内容,如果未能解决你的问题,请参考以下文章