Skip to content

Commit 7b2214a

Browse files
authored
Small fix to README
1 parent 5b5acc5 commit 7b2214a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,14 @@ app.mount('#app')
102102
Alternately, you can link it directly from a CDN:
103103

104104
```html
105+
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
106+
<script src="https://unpkg.com/vue-async-computed@4.0.0"></script>
107+
105108
<div id="app">
106109
<input type="number" v-model="x"> + <input type="number" v-model="y">
107110
= {{sum == null ? 'Loading' : sum}}
108111
</div>
109112

110-
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
111-
<script src="https://unpkg.com/vue-async-computed@4.0.0"></script>
112113
<script>
113114
const app = Vue.createApp({
114115
data () {
@@ -387,7 +388,7 @@ For each async computed property, an object is added to `$asyncComputed` that co
387388

388389
It is meant to be used in your rendering code to display update / error information:
389390

390-
````js
391+
````html
391392
<script>
392393
export default {
393394
asyncComputed: {

0 commit comments

Comments
 (0)