Skip to content

Commit 4c7c9dc

Browse files
authored
Merge pull request #167 from cexbrayat/chore/rc-5
fix: find component after rc.5 refactor (and other minor fixes)
2 parents c3e2673 + 501fe52 commit 4c7c9dc

File tree

7 files changed

+108
-89
lines changed

7 files changed

+108
-89
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@types/estree": "^0.0.42",
2424
"@types/jest": "^24.9.1",
2525
"@types/node": "12.12.35",
26-
"@vue/compiler-sfc": "^3.0.0-beta.20",
26+
"@vue/compiler-sfc": "^3.0.0-rc.5",
2727
"babel-jest": "^25.2.3",
2828
"babel-preset-jest": "^25.2.1",
2929
"dom-event-types": "^1.0.0",
@@ -38,7 +38,7 @@
3838
"ts-jest": "^25.0.0",
3939
"tsd": "0.11.0",
4040
"typescript": "^3.7.5",
41-
"vue": "^3.0.0-beta.20",
41+
"vue": "^3.0.0-rc.5",
4242
"vue-jest": "vuejs/vue-jest#next",
4343
"vue-router": "^4.0.0-alpha.14",
4444
"vuex": "^4.0.0-beta.1"

src/utils/find.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function matches(node: VNode, selector: FindAllComponentsSelector): boolean {
4242

4343
// if a name is missing, then check the locally registered components in the parent
4444
if (node.component.parent) {
45-
const registry = (node.component.parent as any).components
45+
const registry = (node.component.parent as any).type.components
4646
for (const key in registry) {
4747
// is it the selector
4848
if (!selectorName && registry[key] === selector) {

test-dts/mount.d-test.ts

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const AppWithDefine = defineComponent({
1313
template: ''
1414
})
1515

16-
// accept props- vm is properly typed
16+
// accept props - vm is properly typed
1717
expectType<string>(
1818
mount(AppWithDefine, {
1919
props: { a: 'Hello', b: 2 }
@@ -31,13 +31,12 @@ expectError(
3131
})
3232
)
3333

34-
// can receive extra props
35-
// ideally, it should not
36-
// but the props have type { a: string } & VNodeProps
37-
// which allows any property
38-
mount(AppWithDefine, {
39-
props: { a: 'Hello', c: 2 }
40-
})
34+
// can not receive extra props
35+
expectError(
36+
mount(AppWithDefine, {
37+
props: { a: 'Hello', c: 2 }
38+
})
39+
)
4140

4241
// wrong prop type should not compile
4342
expectError(

test-dts/shallowMount.d-test.ts

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,12 @@ let wrapper = shallowMount(AppWithDefine, {
2020
// vm is properly typed
2121
expectType<string>(wrapper.vm.a)
2222

23-
// can receive extra props
24-
// ideally, it should not
25-
// but the props have type { a: string } & VNodeProps
26-
// which allows any property
27-
shallowMount(AppWithDefine, {
28-
props: { a: 'Hello', c: 2 }
29-
})
23+
// can not receive extra props
24+
expectError(
25+
shallowMount(AppWithDefine, {
26+
props: { a: 'Hello', c: 2 }
27+
})
28+
)
3029

3130
// wrong prop type should not compile
3231
expectError(

tests/features/async-components.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { defineAsyncComponent, defineComponent, h, AppConfig } from 'vue'
33
import { mount, flushPromises } from '../../src'
44

55
const config: AppConfig = {
6-
devtools: false,
76
optionMergeStrategies: {},
87
globalProperties: {},
98
isCustomElement: (tag: string) => false,

tests/mountingOptions/props.spec.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,11 @@ describe('mountingOptions.props', () => {
2727
})
2828

2929
test('assigns extra properties as attributes on components', () => {
30-
// the recommended way is to use `attrs` though
31-
// and ideally it should not even compile, but props is too loosely typed
32-
// for components defined with `defineComponent`
3330
const wrapper = mount(Component, {
3431
props: {
35-
message: 'Hello World',
32+
message: 'Hello World'
33+
},
34+
attrs: {
3635
class: 'HelloFromTheOtherSide',
3736
id: 'hello',
3837
disabled: true

yarn.lock

Lines changed: 89 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,11 @@
207207
dependencies:
208208
"@babel/types" "^7.8.3"
209209

210+
"@babel/helper-validator-identifier@^7.10.4":
211+
version "7.10.4"
212+
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2"
213+
integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==
214+
210215
"@babel/helper-validator-identifier@^7.9.0", "@babel/helper-validator-identifier@^7.9.5":
211216
version "7.9.5"
212217
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz#90977a8e6fbf6b431a7dc31752eee233bf052d80"
@@ -245,6 +250,11 @@
245250
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.4.tgz#68a35e6b0319bbc014465be43828300113f2f2e8"
246251
integrity sha512-bC49otXX6N0/VYhgOMh4gnP26E9xnDZK3TmbNpxYzzz9BQLBosQwfyOe9/cXUU3txYhTzLCbcqd5c8y/OmCjHA==
247252

253+
"@babel/parser@^7.10.4":
254+
version "7.10.5"
255+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.5.tgz#e7c6bf5a7deff957cec9f04b551e2762909d826b"
256+
integrity sha512-wfryxy4bE1UivvQKSQDU4/X6dr+i8bctjUjj8Zyt3DQy7NtPizJXT8M52nqpNKL+nq2PW8lxk4ZqLj0fD4B4hQ==
257+
248258
"@babel/plugin-proposal-async-generator-functions@^7.8.3":
249259
version "7.8.3"
250260
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.3.tgz#bad329c670b382589721b27540c7d288601c6e6f"
@@ -764,6 +774,15 @@
764774
lodash "^4.17.13"
765775
to-fast-properties "^2.0.0"
766776

777+
"@babel/types@^7.10.4":
778+
version "7.10.5"
779+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.5.tgz#d88ae7e2fde86bfbfe851d4d81afa70a997b5d15"
780+
integrity sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==
781+
dependencies:
782+
"@babel/helper-validator-identifier" "^7.10.4"
783+
lodash "^4.17.19"
784+
to-fast-properties "^2.0.0"
785+
767786
"@bcoe/v8-coverage@^0.2.3":
768787
version "0.2.3"
769788
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
@@ -1188,79 +1207,83 @@
11881207
dependencies:
11891208
"@types/yargs-parser" "*"
11901209

1191-
"@vue/[email protected]beta.20":
1192-
version "3.0.0-beta.20"
1193-
resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.0-beta.20.tgz#66c085e23d5420088074bec73291fbd8151caff3"
1194-
integrity sha512-ZMMMD4GMZXrwJFBzdn3v+VcrrGofqrP7gfJ5ie/3p2sIEVAfsI0qwIb/DCezWt/Cm3viMJiTpv4SINPGK4xM8Q==
1210+
"@vue/[email protected]rc.5":
1211+
version "3.0.0-rc.5"
1212+
resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.0-rc.5.tgz#dd4f1816fcae34a81bc60e584f97993cad284d54"
1213+
integrity sha512-dNz5AObEYg0Oglw3emIsBhTAOVfObrfxDaAzR0UTRDDq+Ohfr6KTSaVQAH88Ym+oa08ZlLZBFc6ARe9doAOIxg==
11951214
dependencies:
1196-
"@babel/parser" "^7.8.6"
1197-
"@babel/types" "^7.8.6"
1198-
"@vue/shared" "3.0.0-beta.20"
1199-
estree-walker "^0.8.1"
1215+
"@babel/parser" "^7.10.4"
1216+
"@babel/types" "^7.10.4"
1217+
"@vue/shared" "3.0.0-rc.5"
1218+
estree-walker "^2.0.1"
12001219
source-map "^0.6.1"
12011220

1202-
1203-
version "3.0.0-beta.20"
1204-
resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.0-beta.20.tgz#9d305d566da28222db4a0f7cd349e3e603a42872"
1205-
integrity sha512-vtkvL8OOcIMdZn8oLKTVRqKLcpRBivhR6xz2sS8mfRA+NNh+QDpBFip5Zjl//FD6mRvv2wiJoWWqe0MgXUChbg==
1206-
dependencies:
1207-
"@vue/compiler-core" "3.0.0-beta.20"
1208-
"@vue/shared" "3.0.0-beta.20"
1209-
1210-
"@vue/compiler-sfc@^3.0.0-beta.20":
1211-
version "3.0.0-beta.20"
1212-
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.0-beta.20.tgz#8ffe1a31e709713708fb625cae62e7efdae90b14"
1213-
integrity sha512-n5bNvZCxvzGJqH2EXsurmzJDHnimOi93ezoeJTOguqNG2XYiiN+IOwzoOy+eYGem945FtKcgvawPhUMr5vPFug==
1214-
dependencies:
1215-
"@vue/compiler-core" "3.0.0-beta.20"
1216-
"@vue/compiler-dom" "3.0.0-beta.20"
1217-
"@vue/compiler-ssr" "3.0.0-beta.20"
1218-
"@vue/shared" "3.0.0-beta.20"
1221+
1222+
version "3.0.0-rc.5"
1223+
resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.0-rc.5.tgz#83905e8601123a3654b90fbd80708a16530ce21a"
1224+
integrity sha512-z8n+R1GhFnWuKURLYxfVSEfP7nSNM91qteobxwys55fhlZZuReouMnUwgrn+ois/IL6RdFlT9H+n4+N6yLrdJA==
1225+
dependencies:
1226+
"@vue/compiler-core" "3.0.0-rc.5"
1227+
"@vue/shared" "3.0.0-rc.5"
1228+
1229+
"@vue/compiler-sfc@^3.0.0-rc.5":
1230+
version "3.0.0-rc.5"
1231+
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.0-rc.5.tgz#374e52a6fbf8fb9aee1213026050a0f1c496fecf"
1232+
integrity sha512-huoIFEfFCJxHcpoByAUQti7CIwJdHPLJXKuy2HG7J1B+IEKugtBdF50CLH35ZD8dWM0nyOMFFqTbO7i6CCjL3Q==
1233+
dependencies:
1234+
"@babel/parser" "^7.10.4"
1235+
"@babel/types" "^7.10.4"
1236+
"@vue/compiler-core" "3.0.0-rc.5"
1237+
"@vue/compiler-dom" "3.0.0-rc.5"
1238+
"@vue/compiler-ssr" "3.0.0-rc.5"
1239+
"@vue/shared" "3.0.0-rc.5"
12191240
consolidate "^0.15.1"
1241+
estree-walker "^2.0.1"
12201242
hash-sum "^2.0.0"
12211243
lru-cache "^5.1.1"
1244+
magic-string "^0.25.7"
12221245
merge-source-map "^1.1.0"
12231246
postcss "^7.0.27"
12241247
postcss-modules "^3.1.0"
12251248
postcss-selector-parser "^6.0.2"
12261249
source-map "^0.6.1"
12271250

1228-
"@vue/[email protected]beta.20":
1229-
version "3.0.0-beta.20"
1230-
resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.0.0-beta.20.tgz#f605836a09b9bcd3ca66193e4984081aa1408825"
1231-
integrity sha512-j2XS2NX/skYxuMPG4T4sk3JUm4LYmonGNBXT5YWUX8G8+KlVTI7/9iPg+8FhZR2jIerhzHj/34MSKxytTItffA==
1251+
"@vue/[email protected]rc.5":
1252+
version "3.0.0-rc.5"
1253+
resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.0.0-rc.5.tgz#878406c59daff362ecdcb199fb9467a769ca8de5"
1254+
integrity sha512-OU5Vl2+bCDMImS9OeCVnl4lfxZ3/sopdwX2SrUWVKQvCxmmmlyWvoVkC6nNGCs/MrOmIMhKmL6etgzLTWyCkUg==
12321255
dependencies:
1233-
"@vue/compiler-dom" "3.0.0-beta.20"
1234-
"@vue/shared" "3.0.0-beta.20"
1256+
"@vue/compiler-dom" "3.0.0-rc.5"
1257+
"@vue/shared" "3.0.0-rc.5"
12351258

1236-
"@vue/[email protected]beta.20":
1237-
version "3.0.0-beta.20"
1238-
resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.0.0-beta.20.tgz#8a16f089394a29a8509e4c8e515f5ec84b26cc13"
1239-
integrity sha512-X59+ZENE1sFRW56vcyb3eTGwqGwRpBJIkau0/NMv86hBbtWUigG4+r4thoCNKQAX3iyMQBlk5dQvxUxopjn5pg==
1259+
"@vue/[email protected]rc.5":
1260+
version "3.0.0-rc.5"
1261+
resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.0.0-rc.5.tgz#45cff8d839d7ad130b1e499239090050fdecff13"
1262+
integrity sha512-oe9C+1jtWUdYL/iNc0OPWbwgOk2rOW2uQ+exx3I6Jo6PKOmnAiPkMElalf9vRnO53rnUphVecMp8BlTJvcNgDw==
12401263
dependencies:
1241-
"@vue/shared" "3.0.0-beta.20"
1264+
"@vue/shared" "3.0.0-rc.5"
12421265

1243-
"@vue/[email protected]beta.20":
1244-
version "3.0.0-beta.20"
1245-
resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.0.0-beta.20.tgz#33d090a18ae86899ffdc571e19cfa8a5523b4a4f"
1246-
integrity sha512-X5mM44vKVi9YC963McJ2m3siKdAAXS0s+LaWnnVH4IjkrlJFcaqQBMhfkJt8mI2SCv5tICBDgmIIkIkJzZ2tTw==
1266+
"@vue/[email protected]rc.5":
1267+
version "3.0.0-rc.5"
1268+
resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.0.0-rc.5.tgz#dd59af3a5fc089d1cdc05a657320c0dc17e5c362"
1269+
integrity sha512-MRIWreFigxdRuI2moFociUL5rVBfgYPrT7rWfQ0XfOyW46b+AiuCJyZvgbsRXwkAERfW1Tb/mY5forYjX2thOg==
12471270
dependencies:
1248-
"@vue/reactivity" "3.0.0-beta.20"
1249-
"@vue/shared" "3.0.0-beta.20"
1271+
"@vue/reactivity" "3.0.0-rc.5"
1272+
"@vue/shared" "3.0.0-rc.5"
12501273

1251-
"@vue/[email protected]beta.20":
1252-
version "3.0.0-beta.20"
1253-
resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.0.0-beta.20.tgz#7588341e7304ae5a695ea1dd86bbe86c8df96e55"
1254-
integrity sha512-L8G9O34TuUUWMA06kZBSGfc44vHPpy+d3K8bM5qXiocdSCyjvikb9McXJsTZesLZZksRAyr1G05u/ikxCERCWQ==
1274+
"@vue/[email protected]rc.5":
1275+
version "3.0.0-rc.5"
1276+
resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.0.0-rc.5.tgz#2fd75a1f29b23abf0ffe5ccdedabda11721c5b5b"
1277+
integrity sha512-0jwpO3MBqMToq7qC816Z8Y6G8aN4ZKbv7MupgRaepzxhiK0sXcjLQmOATP3g/NyX52UCBJS4wAwsxidqGnAabA==
12551278
dependencies:
1256-
"@vue/runtime-core" "3.0.0-beta.20"
1257-
"@vue/shared" "3.0.0-beta.20"
1279+
"@vue/runtime-core" "3.0.0-rc.5"
1280+
"@vue/shared" "3.0.0-rc.5"
12581281
csstype "^2.6.8"
12591282

1260-
"@vue/[email protected]beta.20":
1261-
version "3.0.0-beta.20"
1262-
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.0-beta.20.tgz#022b7aac09669d6ca79ff2cd38418853b2ffc8be"
1263-
integrity sha512-Ttuh2Kib8aelCm0J0M31z7ajHYWI3DOj59sbAh8ZuwIn8l5sKUmDUkxry2n3gYJ5s3uV3xhFCLQs1THtsg1/qA==
1283+
"@vue/[email protected]rc.5":
1284+
version "3.0.0-rc.5"
1285+
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.0-rc.5.tgz#cea2378e3e37363ddc1f5dd158edc9c9b5b3fff0"
1286+
integrity sha512-ZhcgGzBpp+pUzisZgQpM4ctIGgLpYjBj7/rZfbhEPxFHF/BuTV2jmhXvAl8aF9xDAejIcw85xCy92gDSwKtPag==
12641287

12651288
abab@^2.0.0, abab@^2.0.3:
12661289
version "2.0.3"
@@ -2310,16 +2333,16 @@ estree-walker@^0.6.1:
23102333
resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362"
23112334
integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==
23122335

2313-
estree-walker@^0.8.1:
2314-
version "0.8.1"
2315-
resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.8.1.tgz#6230ce2ec9a5cb03888afcaf295f97d90aa52b79"
2316-
integrity sha512-H6cJORkqvrNziu0KX2hqOMAlA2CiuAxHeGJXSIoKA/KLv229Dw806J3II6mKTm5xiDX1At1EXCfsOQPB+tMB+g==
2317-
23182336
estree-walker@^1.0.1:
23192337
version "1.0.1"
23202338
resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700"
23212339
integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==
23222340

2341+
estree-walker@^2.0.1:
2342+
version "2.0.1"
2343+
resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.1.tgz#f8e030fb21cefa183b44b7ad516b747434e7a3e0"
2344+
integrity sha512-tF0hv+Yi2Ot1cwj9eYHtxC0jB9bmjacjQs6ZBTj82H8JwUywFuc+7E83NWfNMwHXZc11mjfFcVXPe9gEP4B8dg==
2345+
23232346
esutils@^2.0.2:
23242347
version "2.0.3"
23252348
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
@@ -3983,7 +4006,7 @@ lodash.sortby@^4.7.0:
39834006
resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
39844007
integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=
39854008

3986-
lodash@^4.17.13, lodash@^4.17.15:
4009+
lodash@^4.17.13, lodash@^4.17.15, lodash@^4.17.19:
39874010
version "4.17.19"
39884011
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b"
39894012
integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==
@@ -4060,7 +4083,7 @@ lru-cache@^5.1.1:
40604083
dependencies:
40614084
yallist "^3.0.2"
40624085

4063-
magic-string@^0.25.2, magic-string@^0.25.5:
4086+
magic-string@^0.25.2, magic-string@^0.25.5, magic-string@^0.25.7:
40644087
version "0.25.7"
40654088
resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051"
40664089
integrity sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==
@@ -5945,14 +5968,14 @@ vue-router@^4.0.0-alpha.14:
59455968
resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.0.0-alpha.14.tgz#4bc5fed1db61b8d04fd95ad9c499c7428f039a0e"
59465969
integrity sha512-ydWSXxXAsTCiJ31V4x4ZAKI1CdpPMhf7b2LPi4AmG5SCgduu1zf+LhzWWHXmgbmheEiJpfecigVIZp4ABpZJmw==
59475970

5948-
vue@^3.0.0-beta.20:
5949-
version "3.0.0-beta.20"
5950-
resolved "https://registry.yarnpkg.com/vue/-/vue-3.0.0-beta.20.tgz#34a7907cfbdc65b6b8c61fb4d7656f4aa6bf1fff"
5951-
integrity sha512-JmfvMwZQ/bsEF5YBDdYqZzpp4M8dSninyGxG2bHUlpS4Y66X/pduw2GpGE61xxgfrp2KM5cI9ryRpsNHrsf9HA==
5971+
vue@^3.0.0-rc.5:
5972+
version "3.0.0-rc.5"
5973+
resolved "https://registry.yarnpkg.com/vue/-/vue-3.0.0-rc.5.tgz#973175d45a892b3bd23ef5de7faa4add9c66275f"
5974+
integrity sha512-8t8Y4sHMBGD5iLZ7JfBGmKBJlzesPoL+/nW9EV8s+4LwnKC4rGlRp+Lj2rcign4iQaj0GFaL7DrQ8IoOfVX6+w==
59525975
dependencies:
5953-
"@vue/compiler-dom" "3.0.0-beta.20"
5954-
"@vue/runtime-dom" "3.0.0-beta.20"
5955-
"@vue/shared" "3.0.0-beta.20"
5976+
"@vue/compiler-dom" "3.0.0-rc.5"
5977+
"@vue/runtime-dom" "3.0.0-rc.5"
5978+
"@vue/shared" "3.0.0-rc.5"
59565979

59575980
vuex@^4.0.0-beta.1:
59585981
version "4.0.0-beta.1"

0 commit comments

Comments
 (0)