Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(docs) Changed the names of sections in the Built-in Components #396

Merged
merged 2 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -227,15 +227,15 @@ export const sidebar: ThemeConfig['sidebar'] = {
]
},
{
text: 'Встроенные компоненты',
text: 'Built-in Components',
Ibochkarev marked this conversation as resolved.
Show resolved Hide resolved
items: [
{ text: 'Transition', link: '/guide/built-ins/transition' },
{
text: 'Переходы в списках',
text: 'TransitionGroup',
link: '/guide/built-ins/transition-group'
},
{ text: 'Сохранение состояния', link: '/guide/built-ins/keep-alive' },
{ text: 'Телепорт', link: '/guide/built-ins/teleport' },
{ text: 'KeepAlive', link: '/guide/built-ins/keep-alive' },
{ text: 'Teleport', link: '/guide/built-ins/teleport' },
{ text: 'Suspense', link: '/guide/built-ins/suspense' }
]
},
Expand Down
2 changes: 1 addition & 1 deletion src/guide/built-ins/keep-alive.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import SwitchComponent from './keep-alive-demos/SwitchComponent.vue'
</script>

# Сохранение состояния {#keepalive}
# KeepAlive {#keepalive}

`<KeepAlive>` это встроенный компонент, который позволяет условно кэшировать экземпляры компонентов при динамическом переключении между несколькими компонентами.

Expand Down
2 changes: 1 addition & 1 deletion src/guide/built-ins/teleport.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Телепорт {#teleport}
# Teleport {#teleport}

<VueSchoolLink href="https://vueschool.io/lessons/vue-3-teleport" title="Бесплатный урок о телепортах во Vue.js"/>

Expand Down
2 changes: 1 addition & 1 deletion src/guide/built-ins/transition-group.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import ListMove from './transition-demos/ListMove.vue'
import ListStagger from './transition-demos/ListStagger.vue'
</script>

# Переходы в списках {#transitiongroup}
# TransitionGroup {#transitiongroup}

`<TransitionGroup>` это встроенный компонент, предназначенный для создания анимации при добавлении, удалении и изменении порядка элементов или компонентов, которые отображаются в списке.

Expand Down