1.0.3 • Published 4 years ago

v-disable-swipe-back v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

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

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

<ion-page v-disable-swipe-back>
 ...
</ion-page>