10 lines
172 B
Vue
Raw Normal View History

2026-05-31 13:21:13 +02:00
<script setup lang="ts">
import { useSlideContext } from '../context'
const { $nav } = useSlideContext()
</script>
<template>
<span>{{ $nav.total }}</span>
</template>