Skip to content

Commit fa2c887

Browse files
authored
fix import closed quote (#1029)
1 parent e56c456 commit fa2c887

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/guide/composition-api-provide-inject.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Using our `MyMap` component, our provided values can be refactored as the follow
6060
6161
<script>
6262
import { provide } from 'vue'
63-
import MyMarker from './MyMarker.vue
63+
import MyMarker from './MyMarker.vue'
6464
6565
export default {
6666
components: {
@@ -123,7 +123,7 @@ Using our `MyMap` component, our code can be updated as follows:
123123
124124
<script>
125125
import { provide, reactive, ref } from 'vue'
126-
import MyMarker from './MyMarker.vue
126+
import MyMarker from './MyMarker.vue'
127127
128128
export default {
129129
components: {
@@ -159,7 +159,7 @@ For example, in the event we needed to change the user's location, we would idea
159159
160160
<script>
161161
import { provide, reactive, ref } from 'vue'
162-
import MyMarker from './MyMarker.vue
162+
import MyMarker from './MyMarker.vue'
163163
164164
export default {
165165
components: {
@@ -198,7 +198,7 @@ However, there are times where we need to update the data inside of the componen
198198
199199
<script>
200200
import { provide, reactive, ref } from 'vue'
201-
import MyMarker from './MyMarker.vue
201+
import MyMarker from './MyMarker.vue'
202202
203203
export default {
204204
components: {
@@ -254,7 +254,7 @@ Finally, we recommend using `readonly` on provided property if you want to ensur
254254
255255
<script>
256256
import { provide, reactive, readonly, ref } from 'vue'
257-
import MyMarker from './MyMarker.vue
257+
import MyMarker from './MyMarker.vue'
258258
259259
export default {
260260
components: {

0 commit comments

Comments
 (0)