Skip to content

Commit c2b4c66

Browse files
committedJan 3, 2024
fix(client): add computed dir and lang to html root
instead of accessing raw siteData.lang/dir fixes #3353 (comment)
1 parent a6cd891 commit c2b4c66

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed
 

‎src/client/app/data.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ export interface VitePressData<T = any> {
4444
title: Ref<string>
4545
description: Ref<string>
4646
lang: Ref<string>
47-
isDark: Ref<boolean>
4847
dir: Ref<string>
48+
isDark: Ref<boolean>
4949
localeIndex: Ref<string>
5050
}
5151

‎src/client/app/index.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ const Theme = resolveThemeExtends(RawTheme)
3838
const VitePressApp = defineComponent({
3939
name: 'VitePressApp',
4040
setup() {
41-
const { site } = useData()
41+
const { site, lang, dir } = useData()
4242

4343
// change the language on the HTML element based on the current lang
4444
onMounted(() => {
4545
watchEffect(() => {
46-
document.documentElement.lang = site.value.lang
47-
document.documentElement.dir = site.value.dir
46+
document.documentElement.lang = lang.value
47+
document.documentElement.dir = dir.value
4848
})
4949
})
5050

‎src/node/build/render.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,10 @@ export async function renderPage(
152152
}
153153
}
154154

155+
const dir = pageData.frontmatter.dir || siteData.dir || 'ltr'
156+
155157
const html = `<!DOCTYPE html>
156-
<html lang="${siteData.lang}" dir="${siteData.dir}">
158+
<html lang="${siteData.lang}" dir="${dir}">
157159
<head>
158160
<meta charset="utf-8">
159161
${

0 commit comments

Comments
 (0)
Please sign in to comment.