Skip to content

Commit 28b17da

Browse files
authored
update composition-api-introduction.md (#1360)
1 parent 12071a7 commit 28b17da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/composition-api-introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ import { ref, onMounted, watch, toRefs } from 'vue'
320320

321321
// in our component
322322
setup (props) {
323-
// using `toRefs` to create a Reactive Reference to the `user` property of props
323+
// using `toRefs` to create a Reactive Reference to the `user` property of `props`
324324
const { user } = toRefs(props)
325325

326326
const repositories = ref([])

0 commit comments

Comments
 (0)