Elia

Results 1 comments of Elia

Example using 'backbutton' callback: ``` if (process.env.CORDOVA_PLATFORM) { document.addEventListener('backbutton', () => { this.$router.go(-1) }, false) } ``` Router Config: ``` const router = new Router({ mode: process.env.CORDOVA_PLATFORM ? "hash" :...