Skip to content

Commit

Permalink
fix siteLinks
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidingPlus committed Jun 28, 2024
1 parent 6c87c5e commit 829801e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/assets/siteLinks.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[
{
"icon": "Blog",
"name": "博客",
"name": "个人博客",
"link": "https://blog.lzx0626.me/"
},
{
"icon": "Sourcetree",
"name": "源码网站",
"icon": "FileCode",
"name": "Code Browser",
"link": "https://code.lzx0626.me/"
},
{
Expand Down
4 changes: 2 additions & 2 deletions src/components/Links.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<script setup>
import { Icon } from "@vicons/utils";
// 可前往 https://www.xicons.org 自行挑选并在此处引入
import { Link, Blog, CompactDisc, Cloud, Compass, Book, Fire, LaptopCode, Sourcetree } from "@vicons/fa"; // 注意使用正确的类别
import { Link, Blog, CompactDisc, Cloud, Compass, Book, Fire, LaptopCode, FileCode } from "@vicons/fa"; // 注意使用正确的类别
import { mainStore } from "@/store";
import { Swiper, SwiperSlide } from "swiper/vue";
import { Pagination, Mousewheel } from "swiper/modules";
Expand All @@ -70,7 +70,7 @@ const siteIcon = {
Book,
Fire,
LaptopCode,
Sourcetree
FileCode
};
// 链接跳转
Expand Down

0 comments on commit 829801e

Please sign in to comment.