v-disable-swipe-back
Version:
This vue 3 directive for ionic framework, disables switching the previous route if the user makes a swipe on device iOS
27 lines (19 loc) • 489 B
Markdown
# v-disable-swipe-back
## Getting Started
You can install `v-disable-swipe-back` using npm.
```
npm install v-disable-swipe-back
```
Then in main.ts of your ionic vue project
```typescript
import App from './App.vue';
import {DisableSwipeBackDirective} from 'v-disable-swipe-back';
const app = createApp(App)
.directive('disable-swipe-back', DisableSwipeBackDirective);
```
In vue template include directive in ion-page
```vue
<ion-page v-disable-swipe-back>
...
</ion-page>
```