修复:《我的归档》生产环境筛选无效的问题,移除router(dev效果良好,build后不生效)

This commit is contained in:
2022-08-14 21:35:53 +08:00
parent 498f690fa1
commit a27276969b
4 changed files with 28 additions and 20 deletions

View File

@@ -26,7 +26,7 @@
</span>
<span class="meta-content">
<span v-for="(category, index) in categories" :key="index">
<a href="javascript:void(0);" @click="router.go('/archives.html?category=' + category)" target="_self" title="按分类归档">{{ category }}</a>
<a href="javascript:void(0);" @click="goToLink('/archives.html', 'category', category)" target="_self" title="按分类归档">{{ category }}</a>
<span v-if="index != categories.length - 1">, </span>
</span>
</span>
@@ -37,7 +37,7 @@
</span>
<span class="meta-content">
<span v-for="(tag, index) in tags" :key="index">
<a href="javascript:void(0);" @click="router.go('/archives.html?tag=' + tag)" target="_self" title="按标签归档">{{ tag }}</a>
<a href="javascript:void(0);" @click="goToLink('/archives.html', 'tag', tag)" target="_self" title="按标签归档">{{ tag }}</a>
<span v-if="index != tags.length - 1">, </span>
</span>
</span>
@@ -47,16 +47,15 @@
<script lang="ts" setup>
import { reactive, toRefs } from 'vue'
import { useData, useRouter } from 'vitepress'
import { useData } from 'vitepress'
import dayjs from 'dayjs'
import 'dayjs/locale/zh-cn'
import relativeTime from 'dayjs/plugin/relativeTime'
import { goToLink } from '../utils.ts'
dayjs.extend(relativeTime)
dayjs.locale('zh-cn')
const router = useRouter()
// 定义文章属性
const props = defineProps({
article: Object,