Appearance
内置组件
组件注册和使用
内置组件无需注册便可以直接在模板中使用。它们也是 tree-shakeable 的:仅在使用时才会包含在构建中。
在渲染函数中使用它们时,需要显式导入。例如:
import { h, Transition } from 'vue'
h(Transition, {
/* props */
})
<Transition>
为单个元素或组件提供动画过渡效果。
Props
interface TransitionProps { /** * 用于自动生成过渡 CSS class 名。 * 例如 `name: 'fade'` 将自动扩展为 `.fade-enter`、 * `.fade-enter-active` 等。 */ name?: string /** * 是否应用 CSS 过渡 class。 * 默认:true */ css?: boolean /** * 指定要等待的过渡事件类型 * 来确定过渡结束的时间。 * 默认情况下会自动检测 * 持续时间较长的类型。 */ type?: 'transition' | 'animation' /** * 显式指定过渡的持续时间。 * 默认情况下是等待过渡效果的根元素的第一个 `transitionend` * 或`animationend`事件。 */ duration?: number | { enter: number; leave: number } /** * 控制离开/进入过渡的时序。 * 默认情况下是同时的。 */ mode?: 'in-out' | 'out-in' | 'default' /** * 是否对初始渲染使用过渡。 * 默认:false */ appear?: boolean /** * 用于自定义过渡 class 的 prop。 * 在模板中使用短横线命名,例如:enter-from-class="xxx" */ enterFromClass?: string enterActiveClass?: string enterToClass?: string appearFromClass?: string appearActiveClass?: string appearToClass?: string leaveFromClass?: string leaveActiveClass?: string leaveToClass?: string }
事件
@before-enter
@before-leave
@enter
@leave
@appear
@after-enter
@after-leave
@after-appear
@enter-cancelled
@leave-cancelled
(v-show
only)@appear-cancelled
示例
简单元素:
<Transition> <div v-if="ok">toggled content</div> </Transition>
动态组件,初始渲染时带有过渡模式 + 动画出现:
<Transition name="fade" mode="out-in" appear> <component :is="view"></component> </Transition>
监听过渡事件:
<Transition @after-enter="onTransitionComplete"> <div v-show="ok">toggled content</div> </Transition>
相关内容:
<Transition>
指南
<TransitionGroup>
为列表中的多个元素或组件提供过渡效果。
Props
<TransitionGroup>
拥有与<Transition>
除了mode
以外所有的 prop,并增加了两个额外的 prop:interface TransitionGroupProps extends Omit<TransitionProps, 'mode'> { /** * 如果未定义,则渲染为片段 (fragment)。 */ tag?: string /** * 用于自定义过渡期间被应用的 CSS class。 * 在模板中使用 kebab-case,例如 move-class="xxx" */ moveClass?: string }
事件
<TransitionGroup>
抛出与<Transition>
相同的事件。详细信息
默认情况下,
<TransitionGroup>
不会渲染一个 DOM 元素包裹器,但是可以通过tag
prop 定义。注意,每个
<transition-group>
的子节点必须有独立的 key,动画才能正常工作。<TransitionGroup>
支持通过 CSS transform 过渡移动。 当一个子节点在屏幕上的位置在更新之后发生变化时,它会被应用一个使其移动的 CSS class (通过name
attribute 自动生成或使用move-class
prop 配置)。如果使其移动的 class 被应用时 CSStransform
property 是“可过渡的”,该元素会通过 FLIP 技术平滑地到达动画终点。示例
<TransitionGroup tag="ul" name="slide"> <li v-for="item in items" :key="item.id"> {{ item.text }} </li> </TransitionGroup>
相关内容:指南 - TransitionGroup
<KeepAlive>
缓存包裹在其中的动态切换组件。
Props
interface KeepAliveProps { /** * 如果指定,则只有与 `include` 名称 * 匹配的组件才会被缓存。 */ include?: MatchPattern /** * 任何名称与 `exclude` * 匹配的组件都不会被缓存。 */ exclude?: MatchPattern /** * 最多可以缓存多少组件实例。 */ max?: number | string } type MatchPattern = string | RegExp | (string | RegExp)[]
详细信息
<KeepAlive>
包裹动态组件时,会缓存不活跃的组件实例,而不是销毁它们。任何时候都只能有一个活跃组件实例作为
<KeepAlive>
的直接子节点。当一个组件在
<KeepAlive>
中被切换时,它的activated
和deactivated
生命周期钩子将被调用,用来替代mounted
和unmounted
。这适用于<KeepAlive>
的直接子节点及其所有子孙节点。示例
基本用法:
<KeepAlive> <component :is="view"></component> </KeepAlive>
与
v-if
/v-else
分支一起使用时,同一时间只能有一个组件被渲染:<KeepAlive> <comp-a v-if="a > 1"></comp-a> <comp-b v-else></comp-b> </KeepAlive>
与
<Transition>
一起使用:<Transition> <KeepAlive> <component :is="view"></component> </KeepAlive> </Transition>
使用
include
/exclude
:<!-- 用逗号分隔的字符串 --> <KeepAlive include="a,b"> <component :is="view"></component> </KeepAlive> <!-- 正则表达式 (使用 `v-bind`) --> <KeepAlive :include="/a|b/"> <component :is="view"></component> </KeepAlive> <!-- 数组 (使用 `v-bind`) --> <keepalive :include="['a', 'b']"> <component :is="view"></component> </KeepAlive>
使用
max
:<KeepAlive :max="10"> <component :is="view"></component> </KeepAlive>
相关内容:指南 - KeepAlive
<Teleport>
将插槽内容渲染到 DOM 的另一个部分。
Props
interface TeleportProps { /** * 必填项。指定目标容器。 * 可以是选择器或实际元素。 */ to: string | HTMLElement /** * 当值为 `true` 时,内容将保留在其原始位置 * 而不是移动到目标容器中。 * 可以动态更改。 */ disabled?: boolean }
示例
指定目标容器:
<teleport to="#some-id" /> <teleport to=".some-class" /> <teleport to="[data-teleport]" />
有条件地禁用:
<teleport to="#popup" :disabled="displayVideoInline"> <video src="./my-movie.mp4"> </teleport>
相关内容:指南 - Teleport
<Suspense>
用于在组件树中编排嵌套的异步依赖项。
Props
interface SuspenseProps { timeout?: string | number }
事件
@resolve
@pending
@fallback
详细信息
<Suspense>
接受两个插槽:#default
和#fallback
。它将在内存中渲染默认插槽的同时展示后备插槽内容。如果在渲染时遇到异步依赖项 (异步组件和具有
async setup()
的组件),它将等到所有异步依赖项解析完成时再显示默认插槽。相关内容:指南 - Suspense