mirror of https://github.com/YunYouJun/valaxy
21 lines
608 B
Vue
21 lines
608 B
Vue
<script lang="ts" setup>
|
|
import { useScriptTag } from '@vueuse/core'
|
|
import YunFooter from 'valaxy-theme-yun/components/YunFooter.vue'
|
|
|
|
useScriptTag('//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js')
|
|
</script>
|
|
|
|
<template>
|
|
<YunFooter>
|
|
<!-- 自定义页脚内容 -->
|
|
<div>本站总访问量 <span id="busuanzi_value_site_pv" /> 次</div>
|
|
<div>本站访客数 <span id="busuanzi_value_site_uv" /> 人次</div>
|
|
|
|
<VCLiveTime start-time="2022-01-01">
|
|
<template #live-time-before>
|
|
<span>本站已运行</span>
|
|
</template>
|
|
</VCLiveTime>
|
|
</YunFooter>
|
|
</template>
|