mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-11-21 01:13:16 +08:00
39 lines
1014 B
HTML
39 lines
1014 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1, maximum-scale=1"
|
|
/>
|
|
<title>Naive UI</title>
|
|
<meta name="naive-ui-style" />
|
|
<meta name="vueuc-style" />
|
|
<link
|
|
rel="icon"
|
|
type="image/svg+xml"
|
|
href="/demo/assets/images/naivelogo.svg"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
const path = window.location.pathname
|
|
const pathLocale = path.startsWith('/en-US')
|
|
? 'en-US'
|
|
: path.startsWith('/zh-CN')
|
|
? 'zh-CN'
|
|
: undefined
|
|
function deriveTitleFromLocale(locale = navigator.language) {
|
|
if (locale === 'zh-CN') {
|
|
document.title = 'Naive UI: 一个 Vue 3 组件库'
|
|
} else {
|
|
document.title = 'Naive UI: A Vue 3 Component Library'
|
|
}
|
|
}
|
|
deriveTitleFromLocale(pathLocale)
|
|
</script>
|
|
<div id="app"></div>
|
|
<script type="module" src="__INDEX__"></script>
|
|
</body>
|
|
</html>
|