12 lines
249 B
TypeScript
12 lines
249 B
TypeScript
|
|
"use client"
|
|||
|
|
import useAppStore from "@/store/app"
|
|||
|
|
|
|||
|
|
export default function Page () {
|
|||
|
|
const { version } = useAppStore()
|
|||
|
|
|
|||
|
|
return (
|
|||
|
|
<div className="flex flex-col items-start gap-3">
|
|||
|
|
<button>版本号:{version}</button>
|
|||
|
|
</div>
|
|||
|
|
)
|
|||
|
|
}
|