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>
diff --git a/docs/guide/components/page-title/index.md b/docs/guide/components/page-title/index.md
index 2f635e7..8cc5950 100644
--- a/docs/guide/components/page-title/index.md
+++ b/docs/guide/components/page-title/index.md
@@ -11,7 +11,7 @@
     name: 'login',
     component: Login,
     meta: {
-      title: i18n.t('appPageTitle.login'),
+      title: i18n.global.t('appPageTitle.login'),
     },
   },
 ```