{{ $t('common.welcome', { name: 'Admin' }) }}
``` #### 添加翻译 ```typescript // locales/zh-CN/common.ts export default { title: 'Lyzsys 管理系统', welcome: '欢迎,{name}', logout: '退出登录' } ``` ```typescript // locales/en/common.ts export default { title: 'Lyzsys Admin', welcome: 'Welcome, {name}', logout: 'Logout' } ``` ### 主题定制 #### 修改主题色 ```typescript // styles/variables.scss $primary-color: #409eff; $success-color: #67c23a; $warning-color: #e6a23c; $danger-color: #f56c6c; $error-color: #f56c6c; ``` #### 动态切换主题 ```vue ``` ### 文件上传 #### 单文件上传 ```vue内容