kadiryazici / bottom-sheet-vue3

Bottom sheet component for Vue3.
https://kadiryazici.github.io/bottom-sheet-vue3/
MIT License
29 stars 6 forks source link

handling back botton #23

Closed mwinner313 closed 1 year ago

mwinner313 commented 1 year ago

Feature: handling back botton when user click browser back bottom / do not let browser to get back to previews route

kadiryazici commented 1 year ago

Bottom-sheet-vue3 has no relation with router. You need to code that behavior yourself.

You can use this code:

onBeforeRouteLeave(() => {
  return !sheetVisible.value
})