Files
resume/src/store/profile.ts
2025-10-13 23:22:15 +08:00

21 lines
681 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { defineStore } from 'pinia'
export const useProfileStore = defineStore('profile', {
state: () => ({
personalInfo: {
name: '陈修翔',
title: '全栈工程师',
description: '拥有5年前端开发经验专注于构建响应式、高性能的现代Web应用精通JavaScript、React和Vue等前端技术栈。',
socials: [
{ name: 'GitHub', icon: 'fa-brands fa-github', url: '#' },
{ name: 'LinkedIn', icon: 'fa-brands fa-linkedin', url: '#' },
{ name: 'Twitter', icon: 'fa-brands fa-twitter', url: '#' },
{ name: 'Email', icon: 'fa-solid fa-envelope', url: '#' }
]
}
}),
actions: {
}
})