Skip to content

Commit 70bfac6

Browse files
committed
update links
1 parent 9bf7607 commit 70bfac6

File tree

5 files changed

+44
-44
lines changed

5 files changed

+44
-44
lines changed

src/breaking-changes/custom-directives.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ 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

src/breaking-changes/inline-template-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,4 @@ The child, instead of providing no template, should now render the default slot\
8181
</template>
8282
```
8383

84-
> - Note: In 3.x, slots can be rendered as the root with native [fragments](/new/fragments) support!
84+
> - Note: In 3.x, slots can be rendered as the root with native [fragments](../new/fragments) support!

src/breaking-changes/transition-group.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ In Vue 2, `<transition-group>`, like other custom components, needed a root elem
2424

2525
## 3.x Syntax
2626

27-
In Vue 3, we have [fragment support](/new/fragments.html), so components no longer _need_ a root node. Consequently, `<transition-group>` no longer renders one by default.
27+
In Vue 3, we have [fragment support](../new/fragments.html), so components no longer _need_ a root node. Consequently, `<transition-group>` no longer renders one by default.
2828

2929
- If you already have the `tag` attribute defined in your Vue 2 code, like in the example above, everything will work as before
3030
- If you didn't have one defined _and_ your styling or other behaviors relied on the presence of the `<span>` root element to work properly, simply add `tag="span"` to the `<transition-group>`:

src/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Some of the new features to keep an eye on in Vue 3 include:
9696
- [Composition API](https://vuejs.org/guide/extras/composition-api-faq.html)<span class="note">\*</span>
9797
- [SFC Composition API Syntax Sugar (`<script setup>`)](https://vuejs.org/api/sfc-script-setup.html)<span class="note">\*</span>
9898
- [Teleport](https://vuejs.org/guide/built-ins/teleport.html)
99-
- [Fragments](/new/fragments.html)
99+
- [Fragments](./new/fragments.html)
100100
- [Emits Component Option](https://vuejs.org/api/options-state.html#emits)<span class="note">\*\*</span>
101101
- [`createRenderer` API from `@vue/runtime-core`](https://vuejs.org/api/custom-renderer.html) to create custom renderers
102102
- [SFC State-driven CSS Variables (`v-bind` in `<style>`)](https://vuejs.org/api/sfc-css-features.html#v-bind-in-css)<span class="note">\*</span>
@@ -108,7 +108,7 @@ Some of the new features to keep an eye on in Vue 3 include:
108108

109109
## Breaking Changes
110110

111-
Breaking changes between Vue 2 and Vue 3 are listed [here](/breaking-changes/).
111+
Breaking changes between Vue 2 and Vue 3 are listed [here](./breaking-changes/).
112112

113113
## New Framework-level Recommendations
114114

0 commit comments

Comments
 (0)