Skip to content

Commit e20a53f

Browse files
committed
add link to devtools in render-function.md
1 parent 8964286 commit e20a53f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/v2/guide/render-function.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ Everything the component needs is passed through `context`, which is an object c
482482

483483
After adding `functional: true`, updating the render function of our anchored heading component would simply require adding the `context` argument, updating `this.$slots.default` to `context.children`, then updating `this.level` to `context.props.level`.
484484

485-
Since functional components are just functions, they're much cheaper to render. However, this also mean that functional components don't show up in VueJS Chrome dev tools component tree.
485+
Since functional components are just functions, they're much cheaper to render. However, this also mean that functional components don't show up in the [Vue devtools](https://github.com/vuejs/vue-devtools) component tree.
486486

487487
They're also very useful as wrapper components. For example, when you need to:
488488

0 commit comments

Comments
 (0)