Skip to content

Commit 374f173

Browse files
authoredNov 25, 2023
docs: use vue-html for template examples (#2056)
1 parent b8cc3de commit 374f173

File tree

8 files changed

+24
-24
lines changed

8 files changed

+24
-24
lines changed
 

‎packages/docs/guide/advanced/transitions.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
In order to use transitions on your route components and animate navigations, you need to use the [`<RouterView>` slot](./router-view-slot):
99

10-
```html
10+
```vue-html
1111
<router-view v-slot="{ Component }">
1212
<transition name="fade">
1313
<component :is="Component" />
@@ -36,7 +36,7 @@ const routes = [
3636
]
3737
```
3838

39-
```html
39+
```vue-html
4040
<router-view v-slot="{ Component, route }">
4141
<!-- Use any custom transition and to `fade` -->
4242
<transition :name="route.meta.transition || 'fade'">
@@ -49,7 +49,7 @@ const routes = [
4949

5050
It is also possible to determine the transition to use dynamically based on the relationship between the target route and current route. Using a very similar snippet to the one just before:
5151

52-
```html
52+
```vue-html
5353
<!-- use a dynamic transition name -->
5454
<router-view v-slot="{ Component, route }">
5555
<transition :name="route.meta.transition">
@@ -72,7 +72,7 @@ router.afterEach((to, from) => {
7272

7373
Vue might automatically reuse components that look alike, avoiding any transition. Fortunately, it is possible [to add a `key` attribute](https://vuejs.org/api/built-in-special-attributes.html#key) to force transitions. This also allows you to trigger transitions while staying on the same route with different params:
7474

75-
```vue
75+
```vue-html
7676
<router-view v-slot="{ Component, route }">
7777
<transition name="fade">
7878
<component :is="Component" :key="route.path" />

‎packages/docs/guide/essentials/named-routes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const routes = [
2424

2525
To link to a named route, you can pass an object to the `router-link` component's `to` prop:
2626

27-
```html
27+
```vue-html
2828
<router-link :to="{ name: 'user', params: { username: 'erina' }}">
2929
User
3030
</router-link>

‎packages/docs/guide/essentials/named-views.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
Sometimes you need to display multiple views at the same time instead of nesting them, e.g. creating a layout with a `sidebar` view and a `main` view. This is where named views come in handy. Instead of having one single outlet in your view, you can have multiple and give each of them a name. A `router-view` without a name will be given `default` as its name.
99

10-
```html
10+
```vue-html
1111
<router-view class="view left-sidebar" name="LeftSidebar"></router-view>
1212
<router-view class="view main-content"></router-view>
1313
<router-view class="view right-sidebar" name="RightSidebar"></router-view>
@@ -61,7 +61,7 @@ It is possible to create complex layouts using named views with nested views. Wh
6161

6262
The `<template>` section for `UserSettings` component in the above layout would look something like this:
6363

64-
```html
64+
```vue-html
6565
<!-- UserSettings.vue -->
6666
<div>
6767
<h1>User Settings</h1>

‎packages/docs/guide/migration/index.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ The object returned in `scrollBehavior` is now similar to [`ScrollToOptions`](ht
154154

155155
`transition` and `keep-alive` must now be used **inside** of `RouterView` via the `v-slot` API:
156156

157-
```vue
157+
```vue-html
158158
<router-view v-slot="{ Component }">
159159
<transition>
160160
<keep-alive>
@@ -170,7 +170,7 @@ The object returned in `scrollBehavior` is now similar to [`ScrollToOptions`](ht
170170

171171
The `append` prop has been removed from `<router-link>`. You can manually concatenate the value to an existing `path` instead:
172172

173-
```html
173+
```vue-html
174174
replace
175175
<router-link to="child-route" append>to relative child</router-link>
176176
with
@@ -192,7 +192,7 @@ app.config.globalProperties.append = (path, pathToAppend) =>
192192

193193
Both `event`, and `tag` props have been removed from `<router-link>`. You can use the [`v-slot` API](/guide/advanced/composition-api#uselink) to fully customize `<router-link>`:
194194

195-
```html
195+
```vue-html
196196
replace
197197
<router-link to="/about" tag="span" event="dblclick">About Us</router-link>
198198
with
@@ -276,15 +276,15 @@ You can also extend the TypeScript definition of the `Router` interface to add t
276276

277277
Before you could directly pass a template to be rendered by a route components' `<slot>` by nesting it under a `<router-view>` component:
278278

279-
```html
279+
```vue-html
280280
<router-view>
281281
<p>In Vue Router 3, I render inside the route component</p>
282282
</router-view>
283283
```
284284

285285
Because of the introduction of the `v-slot` api for `<router-view>`, you must pass it to the `<component>` using the `v-slot` API:
286286

287-
```html
287+
```vue-html
288288
<router-view v-slot="{ Component }">
289289
<component :is="Component">
290290
<p>In Vue Router 3, I render inside the route component</p>

‎packages/docs/zh/guide/advanced/transitions.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
想要在你的路径组件上使用转场,并对导航进行动画处理,你需要使用 [v-slot API](/guide/advanced/composition-api#uselink)
99

10-
```html
10+
```vue-html
1111
<router-view v-slot="{ Component }">
1212
<transition name="fade">
1313
<component :is="Component" />
@@ -36,7 +36,7 @@ const routes = [
3636
]
3737
```
3838

39-
```html
39+
```vue-html
4040
<router-view v-slot="{ Component, route }">
4141
<!-- 使用任何自定义过渡和回退到 `fade` -->
4242
<transition :name="route.meta.transition || 'fade'">
@@ -49,7 +49,7 @@ const routes = [
4949

5050
也可以根据目标路由和当前路由之间的关系,动态地确定使用的过渡。使用和刚才非常相似的片段:
5151

52-
```html
52+
```vue-html
5353
<!-- 使用动态过渡名称 -->
5454
<router-view v-slot="{ Component, route }">
5555
<transition :name="route.meta.transition">
@@ -72,7 +72,7 @@ router.afterEach((to, from) => {
7272

7373
Vue 可能会自动复用看起来相似的组件,从而忽略了任何过渡。幸运的是,可以[添加一个 `key` 属性](https://cn.vuejs.org/api/built-in-special-attributes.html#key)来强制过渡。这也允许你在相同路由上使用不同的参数触发过渡:
7474

75-
```vue
75+
```vue-html
7676
<router-view v-slot="{ Component, route }">
7777
<transition name="fade">
7878
<component :is="Component" :key="route.path" />

‎packages/docs/zh/guide/essentials/named-routes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const routes = [
2424

2525
要链接到一个命名的路由,可以向 `router-link` 组件的 `to` 属性传递一个对象:
2626

27-
```html
27+
```vue-html
2828
<router-link :to="{ name: 'user', params: { username: 'erina' }}">
2929
User
3030
</router-link>

‎packages/docs/zh/guide/essentials/named-views.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
有时候想同时 (同级) 展示多个视图,而不是嵌套展示,例如创建一个布局,有 `sidebar` (侧导航) 和 `main` (主内容) 两个视图,这个时候命名视图就派上用场了。你可以在界面中拥有多个单独命名的视图,而不是只有一个单独的出口。如果 `router-view` 没有设置名字,那么默认为 `default`
99

10-
```html
10+
```vue-html
1111
<router-view class="view left-sidebar" name="LeftSidebar"></router-view>
1212
<router-view class="view main-content"></router-view>
1313
<router-view class="view right-sidebar" name="RightSidebar"></router-view>
@@ -59,7 +59,7 @@ const router = createRouter({
5959

6060
`UserSettings` 组件的 `<template>` 部分应该是类似下面的这段代码:
6161

62-
```html
62+
```vue-html
6363
<!-- UserSettings.vue -->
6464
<div>
6565
<h1>User Settings</h1>

‎packages/docs/zh/guide/migration/index.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ try {
141141

142142
`transition``keep-alive` 现在必须通过 `v-slot` API 在 `RouterView` **内部**使用:
143143

144-
```vue
144+
```vue-html
145145
<router-view v-slot="{ Component }">
146146
<transition>
147147
<keep-alive>
@@ -157,7 +157,7 @@ try {
157157

158158
`<router-link>` 中的 `append` 属性已被删除。你可以手动将值设置到现有的 `path` 中:
159159

160-
```html
160+
```vue-html
161161
162162
<router-link to="child-route" append>to relative child</router-link>
163163
替换成
@@ -179,7 +179,7 @@ app.config.globalProperties.append = (path, pathToAppend) =>
179179

180180
`<router-link>` 中的 `event``tag` 属性都已被删除。你可以使用 [`v-slot` API](/zh/guide/advanced/composition-api#uselink) 来完全定制 `<router-link>`
181181

182-
```html
182+
```vue-html
183183
184184
<router-link to="/about" tag="span" event="dblclick">About Us</router-link>
185185
替换成
@@ -254,15 +254,15 @@ router.app = app
254254

255255
之前你可以直接传递一个模板,通过嵌套在 `<router-view>` 组件下,由路由组件的 `<slot>` 来渲染:
256256

257-
```html
257+
```vue-html
258258
<router-view>
259259
<p>In Vue Router 3, I render inside the route component</p>
260260
</router-view>
261261
```
262262

263263
由于 `<router-view>` 引入了 `v-slot` API,你必须使用 `v-slot` API 将其传递给 `<component>`
264264

265-
```html
265+
```vue-html
266266
<router-view v-slot="{ Component }">
267267
<component :is="Component">
268268
<p>In Vue Router 3, I render inside the route component</p>

0 commit comments

Comments
 (0)
Please sign in to comment.