2023-12-27 02:18:19 +08:00

18 lines
379 B
TypeScript

import { defineComponent, h } from 'vue'
import { usePageCollection } from '../composables/index.js'
export default defineComponent({
name: 'PageCollection',
setup() {
const collection = usePageCollection()
return () =>
h(
'span',
{
class: 'page-collection',
},
`阅读数:${collection.visitCount}`,
)
},
})