| theme | ./ | ||
|---|---|---|---|
| themeConfigs |
|
Presentation slides for developers
Press Space for next page
Slidev is a slide maker and presentation tool designed for developers. It includes the following features:
- π Text-based - focus on your content with Markdown, then style it later
- π¨ Themable - themes can be shared and reused as npm packages
- π§βπ» Developer Friendly - code highlighting, live coding with autocompletion
- π€Ή Interactive - embed Vue components to enhance your expressions
- π₯ Recording - built-in recording and camera view
- π€ Portable - export to PDF, PPTX, PNGs, or even a hostable SPA
- π Hackable - virtually anything that's possible on a webpage is possible in Slidev
Read more about Why Slidev?
Hover on the bottom-left corner to see the navigation's controls panel
| space / tab / right | next animation or slide |
| left / shiftspace | previous animation or slide |
| up | previous slide |
| down | next slide |
layout: image-right image: https://cover.sli.dev
Use code snippets and get the highlighting directly!
interface User {
id: number
firstName: string
lastName: string
role: string
}
function updateUser(id: number, update: Partial<User>) {
const user = getUser(id)
const newUser = { ...user, ...update }
saveUser(id, newUser)
}