We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b25980 commit fbdf327Copy full SHA for fbdf327
platform/nativescript/plugins/navigator-plugin.js
@@ -75,6 +75,7 @@ export default {
75
76
return new Promise(resolve => {
77
const frame = getFrameInstance(options.frame)
78
+ const key = serializeNavigationOptions(options)
79
const navEntryInstance = new Vue({
80
abstract: true,
81
functional: true,
@@ -84,7 +85,7 @@ export default {
84
85
render: h =>
86
h(component, {
87
props: options.props,
- key: serializeNavigationOptions(options)
88
+ key
89
})
90
91
const page = navEntryInstance.$mount().$el.nativeView
0 commit comments