summaryrefslogtreecommitdiff
path: root/docs/guide/components
diff options
context:
space:
mode:
authorJason M. Bills <jason.m.bills@intel.com>2025-04-30 22:11:39 +0300
committerJason Bills <jason.m.bills@intel.com>2025-05-01 23:19:19 +0300
commit06cfd5bf6f2389229f7580fbd47e5d5b9ab5661e (patch)
tree32b51ee807637433d790c4ff4ce47d7b93e0725c /docs/guide/components
parent83c891d3f92c4f40a1603a65f0d8d774952ec9a4 (diff)
downloadwebui-vue-06cfd5bf6f2389229f7580fbd47e5d5b9ab5661e.tar.xz
i18n: fix global method in page-title guide
The change from i18n.t method to i18n.global.t for vue3 support was missed in the page-title guide. I found this on the Intel router and am pushing this for completeness. Change-Id: I97c993e36caa07af6df7c1ae3124e4f9380c493b Signed-off-by: Jason M. Bills <jason.m.bills@intel.com>
Diffstat (limited to 'docs/guide/components')
-rw-r--r--docs/guide/components/page-title/index.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/guide/components/page-title/index.md b/docs/guide/components/page-title/index.md
index 2f635e74c..8cc5950e0 100644
--- a/docs/guide/components/page-title/index.md
+++ b/docs/guide/components/page-title/index.md
@@ -11,7 +11,7 @@ corresponds with the title property set in the route record's meta field in
name: 'login',
component: Login,
meta: {
- title: i18n.t('appPageTitle.login'),
+ title: i18n.global.t('appPageTitle.login'),
},
},
```