diff --git a/src/examples/src/fetching-data/App/composition.js b/src/examples/src/fetching-data/App/composition.js index fd85480c3e..eb57ef58ed 100644 --- a/src/examples/src/fetching-data/App/composition.js +++ b/src/examples/src/fetching-data/App/composition.js @@ -1,7 +1,7 @@ import { ref, watchEffect } from 'vue' const API_URL = `https://api.github.com/repos/vuejs/core/commits?per_page=3&sha=` -const branches = ['main', 'v2-compat'] +const branches = ['main', 'minor'] export default { setup() { diff --git a/src/examples/src/fetching-data/App/options.js b/src/examples/src/fetching-data/App/options.js index 70128b9d09..bba1063ae6 100644 --- a/src/examples/src/fetching-data/App/options.js +++ b/src/examples/src/fetching-data/App/options.js @@ -2,7 +2,7 @@ const API_URL = `https://api.github.com/repos/vuejs/core/commits?per_page=3&sha= export default { data: () => ({ - branches: ['main', 'v2-compat'], + branches: ['main', 'minor'], currentBranch: 'main', commits: [] }), diff --git a/src/examples/src/fetching-data/App/template.html b/src/examples/src/fetching-data/App/template.html index 52009b099d..4a5e6e359e 100644 --- a/src/examples/src/fetching-data/App/template.html +++ b/src/examples/src/fetching-data/App/template.html @@ -7,7 +7,7 @@
vuejs/vue@{{ currentBranch }}
+vuejs/core@{{ currentBranch }}