Skip to content

Commit 8a4661a

Browse files
committed
v1.0.0-alpha.7
1 parent c02d230 commit 8a4661a

File tree

8 files changed

+11
-30
lines changed

8 files changed

+11
-30
lines changed

examples/vue-composable-example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"dependencies": {
1111
"@vue-composable/axios": "^1.0.0-alpha.4",
1212
"vue": "^3.0.0-alpha.2",
13-
"vue-composable": "^1.0.0-alpha.5"
13+
"vue-composable": "^1.0.0-alpha.7"
1414
},
1515
"devDependencies": {
1616
"@vue/cli-plugin-babel": "4.1.2",

examples/vue-next-webpack-preview-master/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
},
99
"dependencies": {
1010
"vue": "^3.0.0-alpha.2",
11-
"vue-composable": "^1.0.0-alpha.5"
11+
"vue-composable": "^1.0.0-alpha.7",
12+
"@vue-composable/axios": "^1.0.0-alpha.7"
1213
},
1314
"devDependencies": {
1415
"@vue/compiler-sfc": "^3.0.0-alpha.2",

examples/vue-next-webpack-preview-master/src/components/Axios.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default {
2626
const { result, loading, exec, status } = useAxios();
2727
2828
watch(id, id => {
29-
exec("https://reqres.in/api/user/" + id);
29+
exec({ url: "https://reqres.in/api/user/" + id });
3030
});
3131
3232
return {

packages/axios/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue-composable/axios",
3-
"version": "1.0.0-alpha.5",
3+
"version": "1.0.0-alpha.7",
44
"description": "@vue-composable/axios",
55
"main": "index.js",
66
"module": "dist/axios.esm-bundler.js",
@@ -36,7 +36,7 @@
3636
},
3737
"homepage": "https://github.com/pikax/vue-composable/tree/dev/packages/axios#readme",
3838
"dependencies": {
39-
"@vue-composable/core": "1.0.0-alpha.5",
39+
"@vue-composable/core": "1.0.0-alpha.7",
4040
"@vue/runtime-core": "^3.0.0-alpha.2",
4141
"axios": "^0.19.0"
4242
}

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue-composable/core",
3-
"version": "1.0.0-alpha.5",
3+
"version": "1.0.0-alpha.7",
44
"description": "@vue-composable/core",
55
"main": "index.js",
66
"module": "dist/core.esm-bundler.js",

packages/vue-composable/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-composable",
3-
"version": "1.0.0-alpha.5",
3+
"version": "1.0.0-alpha.7",
44
"description": "vue-composable",
55
"main": "index.js",
66
"module": "dist/vue-composable.esm-bundler.js",
@@ -36,8 +36,8 @@
3636
},
3737
"homepage": "https://github.com/pikax/vue-composable",
3838
"dependencies": {
39-
"@vue-composable/core": "1.0.0-alpha.5",
40-
"@vue-composable/web": "1.0.0-alpha.5",
39+
"@vue-composable/core": "1.0.0-alpha.7",
40+
"@vue-composable/web": "1.0.0-alpha.7",
4141
"@vue/runtime-core": "^3.0.0-alpha.2"
4242
}
4343
}

packages/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
},
3636
"homepage": "https://github.com/pikax/vue-composable/tree/dev/packages/core#readme",
3737
"dependencies": {
38-
"@vue-composable/core": "1.0.0-alpha.5",
38+
"@vue-composable/core": "1.0.0-alpha.7",
3939
"@vue/runtime-core": "^3.0.0-alpha.2"
4040
}
4141
}

yarn.lock

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1155,14 +1155,6 @@
11551155
dependencies:
11561156
"@types/yargs-parser" "*"
11571157

1158-
"@vue-composable/web@1.0.0-alpha.5":
1159-
version "1.0.0-alpha.5"
1160-
resolved "https://registry.yarnpkg.com/@vue-composable/web/-/web-1.0.0-alpha.5.tgz#9afd05ac5bd6bde82372615ee8e814b5e88e3e74"
1161-
integrity sha512-Z48WPl4FOsK2Qy0a0qtzaHMRKUnAz4aYGg8i3zGqbeDvuHdfOoQbeu2A67ljjw1tQA9+q8nosubmOQ4gXf5fEQ==
1162-
dependencies:
1163-
"@vue-composable/core" "1.0.0-alpha.5"
1164-
"@vue/runtime-core" "^3.0.0-alpha.1"
1165-
11661158
"@vue/babel-helper-vue-jsx-merge-props@^1.0.0":
11671159
version "1.0.0"
11681160
resolved "https://registry.yarnpkg.com/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.0.0.tgz#048fe579958da408fb7a8b2a3ec050b50a661040"
@@ -1403,11 +1395,6 @@
14031395
resolved "https://registry.yarnpkg.com/@vue/preload-webpack-plugin/-/preload-webpack-plugin-1.1.1.tgz#18723530d304f443021da2292d6ec9502826104a"
14041396
integrity sha512-8VCoJeeH8tCkzhkpfOkt+abALQkS11OIHhte5MBzYaKMTqK0A3ZAKEUVAffsOklhEv7t0yrQt696Opnu9oAx+w==
14051397

1406-
"@vue/reactivity@3.0.0-alpha.1":
1407-
version "3.0.0-alpha.1"
1408-
resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.0.0-alpha.1.tgz#c4d858a97e4a2f249dc15e32f9eaa515161fefc7"
1409-
integrity sha512-yhH5mZqCt5MCiAAtF9Tv7ofph8erpb54hX6nCBJHotOm/IuR4G4TpQcKs4m0LVsW8EIFjTrE4XI4ekuMqjCXeQ==
1410-
14111398
"@vue/reactivity@3.0.0-alpha.2":
14121399
version "3.0.0-alpha.2"
14131400
resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.0.0-alpha.2.tgz#8d0b235652f1834236325c36ea0ba419e06df423"
@@ -1420,13 +1407,6 @@
14201407
dependencies:
14211408
"@vue/reactivity" "3.0.0-alpha.2"
14221409

1423-
"@vue/runtime-core@^3.0.0-alpha.1":
1424-
version "3.0.0-alpha.1"
1425-
resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.0.0-alpha.1.tgz#37fbee2a5b1703df194c2a12576f15af9f64d48e"
1426-
integrity sha512-oNDjcx/uR+98Omm7o651gwVnUfePh5JySR73ubeENnwZejMnShMwsNrJgLxgn6y5DzbPirIerPbFrXbFBQ9cJA==
1427-
dependencies:
1428-
"@vue/reactivity" "3.0.0-alpha.1"
1429-
14301410
"@vue/runtime-dom@3.0.0-alpha.2":
14311411
version "3.0.0-alpha.2"
14321412
resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.0.0-alpha.2.tgz#16d0cf1ce4ff806d7e1ef8c16aaf869093c8ebbd"

0 commit comments

Comments
 (0)