You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
719 B
41 lines
719 B
if (import.meta.env.DEV) {
|
|
// 引入之后可以热更新
|
|
import("./languages/zh.json")
|
|
import("./languages/en.json")
|
|
}
|
|
|
|
const datetimeFormats = {
|
|
en: {
|
|
short: {
|
|
year: "numeric",
|
|
month: "short",
|
|
day: "numeric",
|
|
},
|
|
long: {
|
|
year: "numeric",
|
|
month: "short",
|
|
day: "numeric",
|
|
weekday: "short",
|
|
hour: "numeric",
|
|
minute: "numeric",
|
|
},
|
|
},
|
|
zh: {
|
|
short: {
|
|
year: "numeric",
|
|
month: "short",
|
|
day: "numeric",
|
|
},
|
|
long: {
|
|
year: "numeric",
|
|
month: "short",
|
|
day: "numeric",
|
|
weekday: "short",
|
|
hour: "numeric",
|
|
minute: "numeric",
|
|
hour12: true,
|
|
},
|
|
},
|
|
}
|
|
|
|
export { datetimeFormats }
|
|
|