Skip to content

Commit 3234c59

Browse files
committed
fix(guards): use post watcher for instances
fixes the context being wrong inside components guards
1 parent a072a5f commit 3234c59

File tree

2 files changed

+100
-4
lines changed

2 files changed

+100
-4
lines changed

src/RouterView.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ export const RouterViewImpl = defineComponent({
8787
callback(instance)
8888
)
8989
}
90-
}
90+
},
91+
{ flush: 'post' }
9192
)
9293

9394
return () => {

yarn.lock

+98-3
Original file line numberDiff line numberDiff line change
@@ -1161,6 +1161,17 @@
11611161
dependencies:
11621162
"@types/node" "*"
11631163

1164+
1165+
version "3.0.0"
1166+
resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.0.tgz#25e4f079cf6c39f83bad23700f814c619105a0f2"
1167+
integrity sha512-XqPC7vdv4rFE77S71oCHmT1K4Ks3WE2Gi6Lr4B5wn0Idmp+NyQQBUHsCNieMDRiEpgtJrw+yOHslrsV0AfAsfQ==
1168+
dependencies:
1169+
"@babel/parser" "^7.11.5"
1170+
"@babel/types" "^7.11.5"
1171+
"@vue/shared" "3.0.0"
1172+
estree-walker "^2.0.1"
1173+
source-map "^0.6.1"
1174+
11641175
11651176
version "3.0.0-rc.12"
11661177
resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.0-rc.12.tgz#eb26ff2f7e0eb8b362606228b2dda59c0c914f63"
@@ -1172,6 +1183,14 @@
11721183
estree-walker "^2.0.1"
11731184
source-map "^0.6.1"
11741185

1186+
1187+
version "3.0.0"
1188+
resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.0.tgz#4cbb48fcf1f852daef2babcf9953b681ac463526"
1189+
integrity sha512-ukDEGOP8P7lCPyStuM3F2iD5w2QPgUu2xwCW2XNeqPjFKIlR2xMsWjy4raI/cLjN6W16GtlMFaZdK8tLj5PRog==
1190+
dependencies:
1191+
"@vue/compiler-core" "3.0.0"
1192+
"@vue/shared" "3.0.0"
1193+
11751194
"@vue/[email protected]", "@vue/compiler-dom@^3.0.0-rc.5":
11761195
version "3.0.0-rc.12"
11771196
resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.0-rc.12.tgz#b8468cb3f81d43ca25592026482e1330b99f2b8c"
@@ -1180,7 +1199,7 @@
11801199
"@vue/compiler-core" "3.0.0-rc.12"
11811200
"@vue/shared" "3.0.0-rc.12"
11821201

1183-
"@vue/compiler-sfc@^3.0.0-rc.11", "@vue/compiler-sfc@^3.0.0-rc.5", "@vue/compiler-sfc@^3.0.0-rc.9":
1202+
"@vue/compiler-sfc@^3.0.0-rc.11", "@vue/compiler-sfc@^3.0.0-rc.5":
11841203
version "3.0.0-rc.12"
11851204
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.0-rc.12.tgz#eff29e9688b8ed840506d88b94336689cf2970f2"
11861205
integrity sha512-lHy0LK33KjVBeu6aCX0oLUSZtatOIY/1w927Fh5nFrN1SNnqA31q2wg/IDmvNU6+Y6F3s0MZyN5H6dyZgO5r/g==
@@ -1202,6 +1221,36 @@
12021221
postcss-selector-parser "^6.0.2"
12031222
source-map "^0.6.1"
12041223

1224+
"@vue/compiler-sfc@^3.0.0-rc.9":
1225+
version "3.0.0"
1226+
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.0.tgz#efa38037984bd64aae315828aa5c1248c6eadca9"
1227+
integrity sha512-1Bn4L5jNRm6tlb79YwqYUGGe+Yc9PRoRSJi67NJX6icdhf84+tRMtESbx1zCLL9QixQXu2+7aLkXHxvh4RpqAA==
1228+
dependencies:
1229+
"@babel/parser" "^7.11.5"
1230+
"@babel/types" "^7.11.5"
1231+
"@vue/compiler-core" "3.0.0"
1232+
"@vue/compiler-dom" "3.0.0"
1233+
"@vue/compiler-ssr" "3.0.0"
1234+
"@vue/shared" "3.0.0"
1235+
consolidate "^0.16.0"
1236+
estree-walker "^2.0.1"
1237+
hash-sum "^2.0.0"
1238+
lru-cache "^5.1.1"
1239+
magic-string "^0.25.7"
1240+
merge-source-map "^1.1.0"
1241+
postcss "^7.0.32"
1242+
postcss-modules "^3.2.2"
1243+
postcss-selector-parser "^6.0.2"
1244+
source-map "^0.6.1"
1245+
1246+
1247+
version "3.0.0"
1248+
resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.0.0.tgz#d717abcd23a89fb38d1497228633a21bcf9a0e28"
1249+
integrity sha512-Er41F9ZFyKB3YnNbE6JSTIGCVWve3NAQimgDOk4uP42OnckxBYKGBTutDeFNeqUZBMu/9vRHYrxlGFC9Z5jBVQ==
1250+
dependencies:
1251+
"@vue/compiler-dom" "3.0.0"
1252+
"@vue/shared" "3.0.0"
1253+
12051254
12061255
version "3.0.0-rc.12"
12071256
resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.0.0-rc.12.tgz#ea37bfb616d90c376a5ef40bc65c57514bb6fef3"
@@ -1210,13 +1259,28 @@
12101259
"@vue/compiler-dom" "3.0.0-rc.12"
12111260
"@vue/shared" "3.0.0-rc.12"
12121261

1262+
1263+
version "3.0.0"
1264+
resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.0.0.tgz#fd15632a608650ce2a969c721787e27e2c80aa6b"
1265+
integrity sha512-mEGkztGQrAPZRhV7C6PorrpT3+NtuA4dY2QjMzzrW31noKhssWTajRZTwpLF39NBRrF5UU6cp9+1I0FfavMgEQ==
1266+
dependencies:
1267+
"@vue/shared" "3.0.0"
1268+
12131269
12141270
version "3.0.0-rc.12"
12151271
resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.0.0-rc.12.tgz#9f5c6da78729fe80cc47d23bc8b6c09b36998a29"
12161272
integrity sha512-Cz2wwwH7QpG2BDmmZ9Lia+soji9i3QjzMf1Mko3kIEHHGkeid6OxOaMXBEMCJjAyiRt+1VTHBZv6FgsUJeaDAQ==
12171273
dependencies:
12181274
"@vue/shared" "3.0.0-rc.12"
12191275

1276+
1277+
version "3.0.0"
1278+
resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.0.0.tgz#480febf1bfe32798b6abbd71a88f8e8b473a51c2"
1279+
integrity sha512-3ABMLeA0ZbeVNLbGGLXr+pNUwqXILOqz8WCVGfDWwQb+jW114Cm8djOHVVDoqdvRETQvDf8yHSUmpKHZpQuTkA==
1280+
dependencies:
1281+
"@vue/reactivity" "3.0.0"
1282+
"@vue/shared" "3.0.0"
1283+
12201284
12211285
version "3.0.0-rc.12"
12221286
resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.0.0-rc.12.tgz#021dbfabe5f50043790fb80d5235b6cedb3de4ac"
@@ -1225,6 +1289,15 @@
12251289
"@vue/reactivity" "3.0.0-rc.12"
12261290
"@vue/shared" "3.0.0-rc.12"
12271291

1292+
1293+
version "3.0.0"
1294+
resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.0.0.tgz#e0d1f7c7e22e1318696014cc3501e06b288c2e11"
1295+
integrity sha512-f312n5w9gK6mVvkDSj6/Xnot1XjlKXzFBYybmoy6ahAVC8ExbQ+LOWti1IZM/adU8VMNdKaw7Q53Hxz3y5jX8g==
1296+
dependencies:
1297+
"@vue/runtime-core" "3.0.0"
1298+
"@vue/shared" "3.0.0"
1299+
csstype "^2.6.8"
1300+
12281301
12291302
version "3.0.0-rc.12"
12301303
resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.0.0-rc.12.tgz#cdc197736d6092bfcc39bdf50349a28f175d2103"
@@ -1234,14 +1307,27 @@
12341307
"@vue/shared" "3.0.0-rc.12"
12351308
csstype "^2.6.8"
12361309

1237-
"@vue/server-renderer@^3.0.0-rc.11", "@vue/server-renderer@^3.0.0-rc.5":
1310+
"@vue/server-renderer@^3.0.0-rc.11":
12381311
version "3.0.0-rc.12"
12391312
resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.0.0-rc.12.tgz#cf07d72ad44cd26af0b960f5d99fa3f8a12a1ff2"
12401313
integrity sha512-hqsvUEWjjIN/tv22zxUvXnWrZoFOYu2mIuA8H3arPP2uF7d6tqr2LAFnCLsm+mfX58PStaVZ+kvKNOhBP38/3Q==
12411314
dependencies:
12421315
"@vue/compiler-ssr" "3.0.0-rc.12"
12431316
"@vue/shared" "3.0.0-rc.12"
12441317

1318+
"@vue/server-renderer@^3.0.0-rc.5":
1319+
version "3.0.0"
1320+
resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.0.0.tgz#d531f62f64b67481aae32034eb003a16941b1a52"
1321+
integrity sha512-Ft4kiymPdI8BOYMTVSwB2bUeVH/PsnuEc6s7i9SzQxbz5JZpzzK8ugzICxtSYc8WkNaqi0J1xqdXz2df/YXAqQ==
1322+
dependencies:
1323+
"@vue/compiler-ssr" "3.0.0"
1324+
"@vue/shared" "3.0.0"
1325+
1326+
1327+
version "3.0.0"
1328+
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.0.tgz#ec089236629ecc0f10346b92f101ff4339169f1a"
1329+
integrity sha512-4XWL/avABGxU2E2ZF1eZq3Tj7fvksCMssDZUHOykBIMmh5d+KcAnQMC5XHMhtnA0NAvktYsA2YpdsVwVmhWzvA==
1330+
12451331
12461332
version "3.0.0-rc.12"
12471333
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.0-rc.12.tgz#b114d999d6f51191f4ff6b284fa7bddf4c8589bc"
@@ -10961,7 +11047,7 @@ vue-loader@^16.0.0-beta.5:
1096111047
merge-source-map "^1.1.0"
1096211048
source-map "^0.6.1"
1096311049

10964-
vue@^3.0.0-rc.11, vue@^3.0.0-rc.5, vue@^3.0.0-rc.9:
11050+
vue@^3.0.0-rc.11, vue@^3.0.0-rc.5:
1096511051
version "3.0.0-rc.12"
1096611052
resolved "https://registry.yarnpkg.com/vue/-/vue-3.0.0-rc.12.tgz#08849531c9255f290b552912ae52802c5bc323d5"
1096711053
integrity sha512-T/oWhPRPzIRzPvTjf9mI8oENYlAPr9ThB4JAJXJE3dlRAN7lYzH+eh4yBGR9EsyC+pIEAabP/cnM19dcJBNl3A==
@@ -10970,6 +11056,15 @@ vue@^3.0.0-rc.11, vue@^3.0.0-rc.5, vue@^3.0.0-rc.9:
1097011056
"@vue/runtime-dom" "3.0.0-rc.12"
1097111057
"@vue/shared" "3.0.0-rc.12"
1097211058

11059+
vue@^3.0.0-rc.9:
11060+
version "3.0.0"
11061+
resolved "https://registry.yarnpkg.com/vue/-/vue-3.0.0.tgz#cfb5df5c34efce319b113a1667d12b74dcfd9c90"
11062+
integrity sha512-ZMrAARZ32sGIaYKr7Fk2GZEBh/VhulSrGxcGBiAvbN4fhjl3tuJyNFbbbLFqGjndbLoBW66I2ECq8ICdvkKdJw==
11063+
dependencies:
11064+
"@vue/compiler-dom" "3.0.0"
11065+
"@vue/runtime-dom" "3.0.0"
11066+
"@vue/shared" "3.0.0"
11067+
1097311068
w3c-hr-time@^1.0.2:
1097411069
version "1.0.2"
1097511070
resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd"

0 commit comments

Comments
 (0)