【发布时间】:2022-06-11 10:13:00
【问题描述】:
在文档中,deviceBackButton 在设备后退按钮上触发。它不会在我的应用程序中的设备后退按钮上触发。
设备后退按钮终止我的应用程序而不显示警报对话框。我不想终止应用程序。
<template>
<v-ons-alert-dialog
@deviceBackButton="backButtonEvent"
>
...
</v-ons-alert-dialog>
</template>
<script>
export default {
methods: {
backButtonEvent(event) {
alert('hello, world');
return event.preventDefault();
}
}
}
</script>
【问题讨论】: