Skip to content

Commit 7999644

Browse files
committed
fix(devtools): fix recursive component reference
1 parent 28c5bb6 commit 7999644

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

examples/basic-vue-2.x/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dependencies": {
99
"@vue/composition-api": "^1.0.0-rc.6",
1010
"vue": "^2.6.12",
11-
"vue-react-query": "^0.3.2"
11+
"vue-react-query": "^0.3.3"
1212
},
1313
"devDependencies": {
1414
"typescript": "^4.2.4",

examples/basic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"dependencies": {
99
"vue": "^3.0.5",
10-
"vue-react-query": "^0.3.2"
10+
"vue-react-query": "^0.3.3"
1111
},
1212
"devDependencies": {
1313
"@vitejs/plugin-vue": "^1.1.5",

examples/multi-page/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"dependencies": {
99
"vue": "^3.0.5",
10-
"vue-react-query": "^0.3.2"
10+
"vue-react-query": "^0.3.3"
1111
},
1212
"devDependencies": {
1313
"@vitejs/plugin-vue": "^1.1.5",

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-react-query",
3-
"version": "0.3.2",
3+
"version": "0.3.3",
44
"description": "Vue bindings for react-query",
55
"main": "lib/index.js",
66
"files": [

src/devtools/components/Explorer.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ interface SubEntry {
1818
}
1919
2020
export default defineComponent({
21-
name: "Explorer",
21+
name: "ExplorerTree",
2222
props: {
2323
label: {},
2424
defaultExpanded: {
@@ -177,7 +177,7 @@ export default defineComponent({
177177
borderLeft: '2px solid rgba(0,0,0,.15)',
178178
}"
179179
>
180-
<Explorer
180+
<ExplorerTree
181181
v-for="entry of subEntries"
182182
:key="entry.label"
183183
:label="entry.label"
@@ -226,7 +226,7 @@ export default defineComponent({
226226
borderLeft: '2px solid rgba(0,0,0,.15)',
227227
}"
228228
>
229-
<Explorer
229+
<ExplorerTree
230230
v-for="entry of entries"
231231
:key="entry.label"
232232
:label="entry.label"

0 commit comments

Comments
 (0)