Skip to content

Commit cba02af

Browse files
authored
update en doc links to relative path (#29)
* update links * update links * update links
1 parent 9bf7607 commit cba02af

27 files changed

+75
-75
lines changed

src/breaking-changes/async-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,4 @@ const asyncComponent = defineAsyncComponent(
9595
For more information on the usage of async components, see:
9696

9797
- [Guide: Async Components](https://vuejs.org/guide/components/async.html)
98-
- [Migration build flag: `COMPONENT_ASYNC`](/migration-build.html#compat-configuration)
98+
- [Migration build flag: `COMPONENT_ASYNC`](../migration-build.html#compat-configuration)

src/breaking-changes/attribute-coercion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ In 3.x, `null` or `undefined` should be used to explicitly remove an attribute.
138138
</tbody>
139139
</table>
140140

141-
[Migration build flags:](/migration-build.html#compat-configuration)
141+
[Migration build flags:](../migration-build.html#compat-configuration)
142142

143143
- `ATTR_FALSE_VALUE`
144144
- `ATTR_ENUMERATED_COERCION`

src/breaking-changes/attrs-includes-class-style.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ when used like this:
6060

6161
In components that use `inheritAttrs: false`, make sure that styling still works as intended. If you previously relied on the special behavior of `class` and `style`, some visuals might be broken as these attributes might now be applied to another element.
6262

63-
[Migration build flag: `INSTANCE_ATTRS_CLASS_STYLE`](/migration-build.html#compat-configuration)
63+
[Migration build flag: `INSTANCE_ATTRS_CLASS_STYLE`](../migration-build.html#compat-configuration)
6464

6565
## See also
6666

src/breaking-changes/children.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ In 3.x, the `$children` property is removed and no longer supported. Instead, if
4141

4242
## Migration Strategy
4343

44-
[Migration build flag: `INSTANCE_CHILDREN`](/migration-build.html#compat-configuration)
44+
[Migration build flag: `INSTANCE_CHILDREN`](../migration-build.html#compat-configuration)

src/breaking-changes/custom-directives.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,9 @@ mounted(el, binding, vnode) {
103103
```
104104

105105
:::warning
106-
With [fragments](/new/fragments.html#overview) support, components can potentially have more than one root node. When applied to a multi-root component, a custom directive will be ignored and a warning will be logged.
106+
With [fragments](../new/fragments.html#overview) support, components can potentially have more than one root node. When applied to a multi-root component, a custom directive will be ignored and a warning will be logged.
107107
:::
108108

109109
## Migration Strategy
110110

111-
[Migration build flag: `CUSTOM_DIR`](/migration-build.html#compat-configuration)
111+
[Migration build flag: `CUSTOM_DIR`](../migration-build.html#compat-configuration)

src/breaking-changes/custom-elements-interop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ In 3.0, we are limiting Vue's special treatment of the `is` attribute to the `<c
9696
document.createElement('button', { is: 'plastic-button' })
9797
```
9898

99-
[Migration build flag: `COMPILER_IS_ON_ELEMENT`](/migration-build.html#compat-configuration)
99+
[Migration build flag: `COMPILER_IS_ON_ELEMENT`](../migration-build.html#compat-configuration)
100100

101101
## `vue:` Prefix for In-DOM Template Parsing Workarounds
102102

src/breaking-changes/data-option.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ In 3.0, the result will be:
111111
}
112112
```
113113

114-
[Migration build flag: `OPTIONS_DATA_FN`](/migration-build.html#compat-configuration)
114+
[Migration build flag: `OPTIONS_DATA_FN`](../migration-build.html#compat-configuration)
115115

116116
## Migration Strategy
117117

@@ -122,7 +122,7 @@ For users relying on the object declaration, we recommend:
122122

123123
For users relying on the deep merge behavior from mixins, we recommend refactoring your code to avoid such reliance altogether, since deep merges from mixins are very implicit and can make the code logic more difficult to understand and debug.
124124

125-
[Migration build flags:](/migration-build.html#compat-configuration)
125+
[Migration build flags:](../migration-build.html#compat-configuration)
126126

127127
- `OPTIONS_DATA_FN`
128128
- `OPTIONS_DATA_MERGE`

src/breaking-changes/events-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ We removed `$on`, `$off` and `$once` methods from the instance completely. `$emi
5858

5959
## Migration Strategy
6060

61-
[Migration build flag: `INSTANCE_EVENT_EMITTER`](/migration-build.html#compat-configuration)
61+
[Migration build flag: `INSTANCE_EVENT_EMITTER`](../migration-build.html#compat-configuration)
6262

6363
In Vue 3, it is no longer possible to use these APIs to listen to a component's own emitted events from within a component. There is no migration path for that use case.
6464

src/breaking-changes/filters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Using the example above, here is one example of how it could be implemented.
7373

7474
Instead of using filters, we recommend replacing them with computed properties or methods.
7575

76-
[Migration build flags:](/migration-build.html#compat-configuration)
76+
[Migration build flags:](../migration-build.html#compat-configuration)
7777

7878
- `FILTERS`
7979
- `COMPILER_FILTERS`

src/breaking-changes/functional-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,4 @@ For more information on the usage of the new functional components and the chang
117117

118118
- [Migration: Render Functions](./render-function-api.html)
119119
- [Guide: Render Functions](https://vuejs.org/guide/extras/render-function.html#render-functions-jsx)
120-
- [Migration build flag: `COMPONENT_FUNCTIONAL`](/migration-build.html#compat-configuration)
120+
- [Migration build flag: `COMPONENT_FUNCTIONAL`](../migration-build.html#compat-configuration)

0 commit comments

Comments
 (0)