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