diff --git a/src/App.vue b/src/App.vue index 29b89a4..a373f4a 100644 --- a/src/App.vue +++ b/src/App.vue @@ -2,8 +2,21 @@ import { onMounted, reactive } from 'vue' import StarTrails from './components/StarTrails.vue' -// 数据 const data = reactive({ + navLinks: [{ + name: '博 客', + link: 'https://blog.sunguoqi.com', + }, { + name: '相 册', + link: 'https://camera.sunguoqi.com', + }, { + name: '运 动', + link: 'https://bicycling.sunguoqi.com', + }, { + name: '留 言', + link: 'https://blog.sunguoqi.com/comments', + }], + myProjects: [{ name: 'Home', description: '个人简介、主页、引导页', @@ -41,18 +54,23 @@ const data = reactive({ description: '前端项目起手架模版', link: 'https://github.com/sun0225SUN/starter', }], - navLinks: [{ - name: '博 客', - link: 'https://blog.sunguoqi.com', + + socialLinks: [{ + icon: '', + link: '', + label: 'Github', }, { - name: '相 册', - link: 'https://camera.sunguoqi.com', + icon: '', + link: '', + label: 'Github', }, { - name: '运 动', - link: 'https://bicycling.sunguoqi.com', + icon: '', + link: '', + label: 'Github', }, { - name: '留 言', - link: 'https://blog.sunguoqi.com/comments', + icon: '', + link: '', + label: 'Github', }], }) @@ -70,157 +88,124 @@ onMounted(() => {