Skip to content

Commit 566feff

Browse files
author
Franck Freiburger
committed
wip(docs): fix vue3 cdn url
1 parent 5ae5789 commit 566feff

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/examples.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ _see at [vuejs/rfcs](https://github.com/vuejs/rfcs/pull/231)_
472472
<!DOCTYPE html>
473473
<html>
474474
<body>
475-
<script src="https://unpkg.com/vue@3/dist/vue.runtime.global.prod.js/dist/vue.runtime.global.prod.js"></script>
475+
<script src="https://unpkg.com/vue@3/dist/vue.runtime.global.prod.js"></script>
476476
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue3-sfc-loader.js"></script>
477477
<script>
478478
@@ -537,7 +537,7 @@ _see at [vuejs/rfcs](https://github.com/vuejs/rfcs/pull/231)_
537537
<!DOCTYPE html>
538538
<html>
539539
<body>
540-
<script src="https://unpkg.com/vue@3/dist/vue.runtime.global.prod.js/dist/vue.runtime.global.prod.js"></script>
540+
<script src="https://unpkg.com/vue@3/dist/vue.runtime.global.prod.js"></script>
541541
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue3-sfc-loader.js"></script>
542542
<script>
543543
@@ -797,7 +797,7 @@ In the following example we use a trick to preserve reactivity through the `Vue.
797797
<!DOCTYPE html>
798798
<html>
799799
<body>
800-
<script src="https://unpkg.com/vue@3/dist/vue.runtime.global.prod.js/dist/vue.runtime.global.prod.js"></script>
800+
<script src="https://unpkg.com/vue@3/dist/vue.runtime.global.prod.js"></script>
801801
<script src="https://unpkg.com/vue-i18n@next"></script>
802802
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue3-sfc-loader.js"></script>
803803
<script>
@@ -867,7 +867,7 @@ In the following example we use a trick to preserve reactivity through the `Vue.
867867
<!DOCTYPE html>
868868
<html>
869869
<body>
870-
<script src="https://unpkg.com/vue@3/dist/vue.runtime.global.prod.js/dist/vue.runtime.global.prod.js"></script>
870+
<script src="https://unpkg.com/vue@3/dist/vue.runtime.global.prod.js"></script>
871871
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue3-sfc-loader.js"></script>
872872
<script>
873873
@@ -982,7 +982,7 @@ In the following example we use a trick to preserve reactivity through the `Vue.
982982
<!DOCTYPE html>
983983
<html>
984984
<body>
985-
<script src="https://unpkg.com/vue@3/dist/vue.runtime.global.prod.js/dist/vue.runtime.global.prod.js"></script>
985+
<script src="https://unpkg.com/vue@3/dist/vue.runtime.global.prod.js"></script>
986986
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue3-sfc-loader.js"></script>
987987
<script>
988988
@@ -1089,15 +1089,15 @@ In the following example we use a trick to preserve reactivity through the `Vue.
10891089
<!DOCTYPE html>
10901090
<html>
10911091
<body>
1092-
<script src="https://unpkg.com/vue@3/dist/vue.runtime.global.prod.js/dist/vue.runtime.global.prod.js"></script>
1092+
<script src="https://unpkg.com/vue@3/dist/vue.runtime.global.prod.js"></script>
10931093
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue3-sfc-loader.js"></script>
10941094
<script>
10951095
10961096
/* <!-- */
10971097
const config = {
10981098
10991099
// note: Here, for convenience, we simply retrieve content from a string.
1100-
1100+
11011101
files: {
11021102
'/circle.svg': `<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50" /></svg>`,
11031103
'/main.vue': `
@@ -1278,7 +1278,7 @@ This example use Vue2 because **vue-calendar-picker** is written for Vue2.
12781278
<!DOCTYPE html>
12791279
<html>
12801280
<body>
1281-
<script src="https://unpkg.com/vue@3/dist/vue.runtime.global.prod.js/dist/vue.runtime.global.prod.js"></script>
1281+
<script src="https://unpkg.com/vue@3/dist/vue.runtime.global.prod.js"></script>
12821282
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue3-sfc-loader.js"></script>
12831283
<script>
12841284

0 commit comments

Comments
 (0)