File tree 3 files changed +7
-5
lines changed
3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -44,8 +44,8 @@ export interface VitePressData<T = any> {
44
44
title : Ref < string >
45
45
description : Ref < string >
46
46
lang : Ref < string >
47
- isDark : Ref < boolean >
48
47
dir : Ref < string >
48
+ isDark : Ref < boolean >
49
49
localeIndex : Ref < string >
50
50
}
51
51
Original file line number Diff line number Diff line change @@ -38,13 +38,13 @@ const Theme = resolveThemeExtends(RawTheme)
38
38
const VitePressApp = defineComponent ( {
39
39
name : 'VitePressApp' ,
40
40
setup ( ) {
41
- const { site } = useData ( )
41
+ const { site, lang , dir } = useData ( )
42
42
43
43
// change the language on the HTML element based on the current lang
44
44
onMounted ( ( ) => {
45
45
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
48
48
} )
49
49
} )
50
50
Original file line number Diff line number Diff line change @@ -152,8 +152,10 @@ export async function renderPage(
152
152
}
153
153
}
154
154
155
+ const dir = pageData . frontmatter . dir || siteData . dir || 'ltr'
156
+
155
157
const html = `<!DOCTYPE html>
156
- <html lang="${ siteData . lang } " dir="${ siteData . dir } ">
158
+ <html lang="${ siteData . lang } " dir="${ dir } ">
157
159
<head>
158
160
<meta charset="utf-8">
159
161
${
You can’t perform that action at this time.
0 commit comments