File tree 3 files changed +9
-6
lines changed
platform/nativescript/runtime/components
3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 1
1
const alias = require ( 'rollup-plugin-alias' )
2
2
const commonjs = require ( 'rollup-plugin-commonjs' )
3
3
const resolve = require ( 'rollup-plugin-node-resolve' )
4
+ const buble = require ( 'rollup-plugin-buble' )
4
5
const replace = require ( 'rollup-plugin-replace' )
5
6
const flow = require ( 'rollup-plugin-flow-no-whitespace' )
6
7
const path = require ( 'path' )
@@ -77,6 +78,7 @@ const genConfig = (name) => {
77
78
'process.env.NS_VUE_VERSION' : `'${ NSVueVersion } '`
78
79
} ) ,
79
80
flow ( ) ,
81
+ buble ( ) ,
80
82
alias ( aliases ) ,
81
83
resolve ( ) ,
82
84
commonjs ( ) ,
Original file line number Diff line number Diff line change 68
68
"prettier" : " ^1.10.2" ,
69
69
"rollup" : " ^0.62.0" ,
70
70
"rollup-plugin-alias" : " ^1.4.0" ,
71
+ "rollup-plugin-buble" : " ^0.19.2" ,
71
72
"rollup-plugin-commonjs" : " ^9.1.3" ,
72
73
"rollup-plugin-flow-no-whitespace" : " ^1.0.0" ,
73
74
"rollup-plugin-node-resolve" : " ^3.3.0" ,
76
77
"rollup-watch" : " ^4.3.1" ,
77
78
"semver" : " ^5.5.0" ,
78
79
"set-value" : " ^2.0.0" ,
79
- "tns-core-modules" : " 4.1 .0" ,
80
+ "tns-core-modules" : " 4.2 .0" ,
80
81
"util-inspect" : " ^0.1.8" ,
81
82
"vue" : " ^2.5.17"
82
83
},
Original file line number Diff line number Diff line change @@ -105,11 +105,11 @@ export default {
105
105
return result
106
106
} ,
107
107
108
- async notifyPageMounted ( pageVm ) {
109
- await this . $nextTick ( )
110
-
111
- this . navigate ( {
112
- create : ( ) => pageVm . $el . nativeView
108
+ notifyPageMounted ( pageVm ) {
109
+ this . $nextTick ( ( ) => {
110
+ this . navigate ( {
111
+ create : ( ) => pageVm . $el . nativeView
112
+ } )
113
113
} )
114
114
} ,
115
115
You can’t perform that action at this time.
0 commit comments