Skip to content

Latest commit

 

History

History
112 lines (73 loc) · 2.42 KB

vue-context.md

File metadata and controls

112 lines (73 loc) · 2.42 KB

Vue Global Context

Slidev injected a global Vue context $slidev for advanced conditions or navigation controls.

Usage

You can access it anywhere in your markdown and Vue template, with the "Mustache" syntax.

<!-- slides.md -->

# Page 1

Current page is: {{ $slidev.nav.currentPage }}
<!-- Foo.vue -->

<template>
  <div>Title: {{ $slidev.configs.title }}</div>
  <button @click="$slidev.nav.next">Next Page</button>
</template>

Properties

$clicks

$clicks hold a number of clicks on the current slide. Can be used conditionally to show different content on clicks.

<div v-if="$clicks > 3">Content</div>

$page

$page holds the number of the current page, 1-indexed.

Page: {{ $page }}

Is current page active: {{ $page === $slidev.nav.currentPage }}

$renderContext

$renderContext holds the current render context, can be slide, overview, presenter or previewNext

<div v-if="$renderContext === 'slide'">
  This content will only be rendered in slides view
</div>

$slidev.nav

A reactive object holding the properties and controls of the slides navigation. For examples:

$slidev.nav.next() // go next step

$slidev.nav.nextSlide() // go next slide (skip v-clicks)

$slidev.nav.go(10) // go slide #10
$slidev.nav.currentPage // current slide number

$slidev.nav.currentLayout // current layout id

For more properties available, refer to the nav.ts exports.

Note: $slidev.nav.clicks is a global state while $clicks is local to each slide. It's recommended to use $clicks over $slidev.nav.clicks to avoid clicks changed been triggered on page transitions.

$slidev.configs

A reactive object holding the parsed configurations in the first frontmatter of your slides.md. For example

---
title: My First Slidev!
---
{{ $slidev.configs.title }} // 'My First Slidev!'

$slidev.themeConfigs

A reactive object holding the parsed theme configurations.

---
title: My First Slidev!
themeConfig:
  primary: # 213435
---
{{ $slidev.themeConfigs.primary }} // '#213435'

$nav

Available since v0.43.0

A shorthand of $slidev.nav.