[Vuejs]-Vue-Nativescript Back-Navigation crashes iOS App

0👍

If you are using frame
try this

this.$navigateTo(PageXY, {
     frame: 'frame',
});

to go back try this:

this.$navigateBack({frame: "frame"});

Leave a comment