feat: 首页添加版本更新日志模块

This commit is contained in:
xiaoxian521
2022-11-29 11:08:48 +08:00
parent c437371db6
commit 7f0354cd63
9 changed files with 322 additions and 175 deletions

View File

@@ -1,6 +1,7 @@
<script setup lang="ts">
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
import { markRaw } from "vue";
import { useRenderFlicker } from "@/components/ReFlicker";
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
defineOptions({
name: "TimeLine"
@@ -11,12 +12,12 @@ const activities = [
{
content: "支持圆点闪动",
timestamp: lastBuildTime,
icon: useRenderFlicker()
icon: markRaw(useRenderFlicker())
},
{
content: "支持方形闪动",
timestamp: lastBuildTime,
icon: useRenderFlicker({ borderRadius: 0, background: "#67C23A" })
icon: markRaw(useRenderFlicker({ borderRadius: 0, background: "#67C23A" }))
},
{
content: "支持默认颜色",