From edb62aa850755dd957c39541684d26f0e26bb82b Mon Sep 17 00:00:00 2001 From: kazuya kawaguchi Date: Thu, 6 Oct 2016 16:32:24 +0900 Subject: [PATCH] improve vue devtools referencing --- src/api/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/index.md b/src/api/index.md index 43e5946459..1470d91e21 100644 --- a/src/api/index.md +++ b/src/api/index.md @@ -779,7 +779,7 @@ All lifecycle hooks automatically have their `this` context bound to the instanc Allow the component to recursively invoke itself in its template. Note that when a component is registered globally with `Vue.component()`, the global ID is automatically set as its name. - Another benefit of specifying a `name` option is debugging. Named components result in more helpful warning messages. Also, when inspecting an app in the Vue devtool, unnamed components will show up as ``, which isn't very informative. By providing the `name` option, you will get a much more informative component tree. + Another benefit of specifying a `name` option is debugging. Named components result in more helpful warning messages. Also, when inspecting an app in the [vue-devtools](https://github.com/vuejs/vue-devtools), unnamed components will show up as ``, which isn't very informative. By providing the `name` option, you will get a much more informative component tree. ### extends