diff --git a/src/v2/guide/render-function.md b/src/v2/guide/render-function.md index 43587d2f75..1678966d76 100644 --- a/src/v2/guide/render-function.md +++ b/src/v2/guide/render-function.md @@ -523,6 +523,8 @@ Vue.component('my-component', { ``` > Note: in versions before 2.3.0, the `props` option is required if you wish to accept props in a functional component. In 2.3.0+ you can omit the `props` option and all attributes found on the component node will be implicitly extracted as props. +> +> The reference will be HTMLElement when used with functional components because they’re stateless and instanceless. In 2.5.0+, if you are using [single-file components](single-file-components.html), template-based functional components can be declared with: