-
-
Notifications
You must be signed in to change notification settings - Fork 626
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(cli/site/pc): add browser title toggle both
in english and chinese fix(varletconfig): Merge less commonly used configurations into default configuration items
- Loading branch information
Showing
3 changed files
with
24 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,33 @@ | ||
module.exports = { | ||
name: 'Varlet', | ||
namespace: 'var', | ||
host: 'localhost', | ||
title: 'Varlet', | ||
title: 'VARLET', | ||
port: 8080, | ||
pc: { | ||
title: 'Varlet 组件库文档', | ||
description: 'Varlet 组件库文档', | ||
logo: 'https://cn.vuejs.org/images/logo.png', | ||
redirect: undefined, | ||
title: { | ||
'zh-CN': 'Varlet 面向Vue3的Material风格移动端组件库', | ||
'en-US': 'Material design mobile components built for Vue3', | ||
}, | ||
description: 'Varlet 面向Vue3的Material风格移动端组件库', | ||
logo: 'https://varlet.gitee.io/varlet-ui/varlet_icon.png', | ||
redirect: '/zh-CN/home', | ||
header: { | ||
i18nButton: { | ||
zh_CN: 'En', | ||
en_US: '中文', | ||
logo: 'https://varlet.gitee.io/varlet-ui/varlet_icon.png', | ||
search: { | ||
'zh-CN': '搜索文档...', | ||
'en-US': 'Search...', | ||
}, | ||
language: { | ||
'zh-CN': '中文', | ||
'en-US': 'English', | ||
}, | ||
}, | ||
}, | ||
mobile: { | ||
title: 'Varlet 组件库示例', | ||
description: 'Varlet 组件库示例', | ||
logo: 'https://cn.vuejs.org/images/logo.png', | ||
redirect: undefined, | ||
title: 'Varlet 面向Vue3的Material风格移动端组件库', | ||
description: 'Varlet 面向Vue3的Material风格移动端组件库', | ||
logo: 'https://varlet.gitee.io/varlet-ui/varlet_icon.png', | ||
redirect: '/home', | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters