docs/builtin/components.md
This page lists all the built-in components provided by Slidev. These components can be directly used in your slides.
Note that <LinkInline link="guide/theme-addon" /> can provide additional components. To add your own components, see <LinkInline link="guide/component#write" />.
ArrowDraw an arrow.
<Arrow x1="10" y1="20" x2="100" y2="200" />
Or:
<Arrow v-bind="{ x1:10, y1:10, x2:200, y2:200 }" />
Props:
x1 (string | number, required): start point x positiony1 (string | number, required): start point y positionx2 (string | number, required): end point x positiony2 (string | number, required): end point y positionwidth (string | number, default: 2): line widthcolor (string, default: 'currentColor'): line colortwo-way (boolean, default: false): draw a two-way arrowVDragArrowAn Arrow component that can be dragged.
Props not related to position are the same as the Arrow component.
AutoFitTextExperimental
Box inside which the font size will automatically adapt to fit the content. Similar to PowerPoint or Keynote TextBox.
<AutoFitText :max="200" :min="100" modelValue="Some text"/>
Props:
max (string | number, default 100): Maximum font sizemin (string | number, default 30): Minimum font sizemodelValue (string, default ''): text contentLightOrDarkUse it to display one thing or another depending on the active light or dark theme.
Use it with the two named Slots #dark and #light:
<LightOrDark>
<template #dark>Dark mode is on</template>
<template #light>Light mode is on</template>
</LightOrDark>
Provided props on LightOrDark component will be available using scoped slot props:
<LightOrDark width="100" alt="some image">
<template #dark="props">
</template>
<template #light="props">
</template>
</LightOrDark>
You can provide markdown in the slots, but you will need to surround the content with blank lines:
<LightOrDark>
<template #dark>

</template>
<template #light>

</template>
</LightOrDark>
LinkInsert a link you can use to navigate to a given slide.
<Link to="42">Go to slide 42</Link>
<Link to="42" title="Go to slide 42"/>
<Link to="solutions" title="Go to solutions"/>
Props:
to (string | number): The path of the slide to navigate to (slides path starts from 1)title (string): The title to displayOne can use a string as to, provided the corresponding route exists, e.g.
---
routeAlias: solutions
---
# Now some solutions!
PoweredBySlidevRenders "Powered by Slidev" with a link to the Slidev website.
RenderWhenRender slots depend on whether the context matches (for example whether we are in presenter view).
<RenderWhen context="presenter">This will only be rendered in presenter view.</RenderWhen>
Context type: 'main' | 'visible' | 'print' | 'slide' | 'overview' | 'presenter' | 'previewNext'
Props:
context (Context | Context[]): a context or array of contexts you want to check for
'main': Render in slides and presenter view (equivalent to ['slide', 'presenter']),'visible': Render the content if it is visible'print': Render in print mode'slide': Render in slides'overview': Render in overview'presenter': Render in presenter view'previewNext': Render in presenter's next slide viewSlots:
#default: Rendered when the context matches#fallback: Rendered when the context does not matchSlideCurrentNoCurrent slide number.
<SlideCurrentNo />
SlidesTotalTotal number of slides.
<SlidesTotal />
TitleRendererInsert the main title from a slide parsed as HTML.
Titles and title levels get automatically retrieved from the first title element of each slide.
You can override this automatic behavior for a slide by using the front matter syntax:
---
title: Amazing slide title
level: 2
---
The <TitleRenderer> component is a virtual component you can import with:
import TitleRenderer from '#slidev/title-renderer'
Then you can use it with:
<TitleRenderer no="42" />
Props:
no (string | number): The number of the slide to display the title from (slides starts from 1)TocInsert a Table Of Content.
If you want a slide to not appear in the <Toc> component, you can use the hideInToc option in the frontmatter of the slide:
---
hideInToc: true
---
Titles are displayed using the <Titles> component
<Toc />
Props:
columns (string | number, default: 1): The number of columns of the displaylistClass (string | string[], default: ''): Classes to apply to the table of contents listmaxDepth (string | number, default: Infinity): The maximum depth level of title to displayminDepth (string | number, default: 1): The minimum depth level of title to displaymode ('all' | 'onlyCurrentTree'| 'onlySiblings', default: 'all'):
'all': Display all items'onlyCurrentTree': Display only items that are in current tree (active item, parents and children of active item)'onlySiblings': Display only items that are in current tree and their direct siblingsTransformApply scaling or transforming to elements.
<Transform :scale="0.5" origin="top center">
<YourElements />
</Transform>
Props:
scale (number | string, default 1): transform scale valueorigin (string, default 'top left'): transform origin valueTweetEmbed a tweet.
<Tweet id="20" />
Props:
id (number | string, required): id of the tweetscale (number | string, default 1): transform scale valueconversation (string, default 'none'): tweet embed parametercards ('hidden' | 'visible', default 'visible'): tweet embed parameterBlueSkyEmbed a Bluesky post.
<BlueSky uri="https://bsky.app/profile/sli.dev/post/3la7gcgfwpe2n" />
<BlueSky uri="at://did:plc:432mbsu2xucyvxl6sluohidu/app.bsky.feed.post/3la7gcgfwpe2n" />
Props:
uri (string, required): AT-URI of the Bluesky post, or a https://bsky.app/profile/.../post/... URLscale (number | string, default 1): transform scale valueVAfter, VClick and VClicksVSwitchSwitch between multiple slots based on clicks.
<LinkCard link="guide/animations#enter-leave" />unmount prop is set to true, the previous slot will be unmounted when switching to the next slot. Default is false.tag and childTag props to change the default tag of the component and its children. Default is div.transition prop to change the transition effect. Default is false (disabled).VDragSlidevVideoEmbed a video.
<SlidevVideo v-click autoplay controls>
<!-- Anything that can go in an HTML video element. -->
<source src="/myMovie.mp4" type="video/mp4" />
<source src="/myMovie.webm" type="video/webm" />
<p>
Your browser does not support videos. You may download it
<a href="/myMovie.mp4">here</a>.
</p>
</SlidevVideo>
Check HTML video element's doc to see what can be included in this component's slot.
Props:
controls (boolean, default: false): show the video controlsautoplay (boolean | 'once', default: false):
true or 'once': start the video only once and does not restart it once ended or pausedfalse: never automatically start the video (rely on controls instead)autoreset ('slide' | 'click', default: undefined):
'slide': go back to the start of the video when going back to the slide'click': go back to the start of the video when going back to the component's click turnposter (string | undefined, default: undefined):
printPoster (string | undefined, default: undefined):
poster when printing.timestamp (string | number, default: 0):
printTimestamp (string | number | 'last' | undefined, default: undefined):
timestamp when printing.::: warning When exporting, the video may fail to load because Chromium does not support some video formats. In this case, you can specify the executable path of the browser. See Chromium executable path for more information. :::
YoutubeEmbed a YouTube video.
<Youtube id="luoMHjh-XcQ" />
Props:
id (string, required): id of the YouTube videowidth (number): width of the videoheight (number): height of the videoYou can also make the video start at a specific time if you add ?start=1234 to the id value (where 1234 is seconds),