vuepress-theme-hope
Version:
A light vuepress theme with tons of features
29 lines (28 loc) • 473 B
TypeScript
export interface RouteLocaleData {
/** Skip to main content */
skipToContent: string;
/**
* 404 page title
*
* 404 页面的标题
*/
notFoundTitle: string;
/**
* 404 page msgs
*
* 404 页面的提示信息
*/
notFoundMsg: string[];
/**
* Back to homepage
*
* 返回主页
*/
home: string;
/**
* Back to last page
*
* 返回上一页
*/
back: string;
}