mirror of
https://github.com/ialley-workshop-open/uni-halo.git
synced 2025-06-02 17:00:20 +09:00
24 lines
434 B
JavaScript
24 lines
434 B
JavaScript
/**
|
||
*
|
||
* 可以以页面为单位来写,
|
||
* 比如首页的内容,写在index字段,个人中心写在center,共同部分写在common部分
|
||
* */
|
||
|
||
export default {
|
||
app: {
|
||
name: "巷子工坊",
|
||
author: "小莫唐尼",
|
||
},
|
||
tabbar: {
|
||
home: "首页",
|
||
moments: "动态",
|
||
publish: "发布",
|
||
mall: "商店",
|
||
mine: "我的",
|
||
},
|
||
// 提示文本
|
||
tips: {
|
||
switchLang: "切换语言",
|
||
},
|
||
};
|