diff --git a/src/api/options-data.md b/src/api/options-data.md index 3f8f63a338..34d854bbe0 100644 --- a/src/api/options-data.md +++ b/src/api/options-data.md @@ -295,4 +295,4 @@ Events listed in the `emits` option **will not** be inherited by the root element of the component and also will be excluded from the `$attrs` property. ::: -* **See also:** [Attribute Inheritance](../guide/component-props.html#non-prop-attributes) +* **See also:** [Attribute Inheritance](../guide/component-attrs.html#attribute-inheritance) diff --git a/src/guide/class-and-style.md b/src/guide/class-and-style.md index 0bc9293360..0febb18f0f 100644 --- a/src/guide/class-and-style.md +++ b/src/guide/class-and-style.md @@ -180,7 +180,7 @@ app.component('my-component', { }) ``` -You can learn more about component attribute inheritance in [Component Props](component-props.html#non-prop-attributes) section. +You can learn more about component attribute inheritance in [Non-Prop Attributes](component-attrs.html) section. ## Binding Inline Styles diff --git a/src/guide/custom-directive.md b/src/guide/custom-directive.md index d3667f5d2c..60fb55402d 100644 --- a/src/guide/custom-directive.md +++ b/src/guide/custom-directive.md @@ -245,4 +245,4 @@ This also means it's possible to directly hook into an element's lifecycle like
``` -This is consistent with the [attribute fallthrough behavior](component-props.html#non-prop-attributes). So, the rule for custom directives on a component will be the same as other extraneous attributes: it is up to the child component to decide where and whether to apply it. When the child component uses `v-bind="$attrs"` on an inner element, it will apply any custom directives used on it as well. +This is consistent with the [attribute fallthrough behavior](component-attrs.html). So, the rule for custom directives on a component will be the same as other extraneous attributes: it is up to the child component to decide where and whether to apply it. When the child component uses `v-bind="$attrs"` on an inner element, it will apply any custom directives used on it as well. diff --git a/src/guide/migration/fragments.md b/src/guide/migration/fragments.md index 074179a9ad..c6a5af7c26 100644 --- a/src/guide/migration/fragments.md +++ b/src/guide/migration/fragments.md @@ -37,4 +37,4 @@ In 3.x, components now can have multiple root nodes! However, this does require ``` -For more information on how attribute inheritance works, see [Non-Prop Attributes](/guide/component-props.html#disabling-attribute-inheritance). +For more information on how attribute inheritance works, see [Non-Prop Attributes](/guide/component-attrs.html).