Skip to content

Commit e447ee5

Browse files
docs(VTreeview): update example with breweries API URL (#21643)
1 parent b46e60c commit e447ee5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/docs/src/examples/v-treeview/misc-selectable-icons.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
function load () {
117117
if (breweries.value.length) return
118118
119-
return fetch('https://api.openbrewerydb.org/breweries').then(res => res.json()).then(data => (breweries.value = data)).catch(err => console.log(err))
119+
return fetch('https://api.openbrewerydb.org/v1/breweries').then(res => res.json()).then(data => (breweries.value = data)).catch(err => console.log(err))
120120
}
121121
122122
function getChildren (type) {

0 commit comments

Comments
 (0)