10 lines
172 B
Vue
10 lines
172 B
Vue
<script setup lang="ts">
|
|
import { useSlideContext } from '../context'
|
|
|
|
const { $nav } = useSlideContext()
|
|
</script>
|
|
|
|
<template>
|
|
<span>{{ $nav.total }}</span>
|
|
</template>
|