From ca164f3c562177e2f317befcddd3b0b66c89ea2c Mon Sep 17 00:00:00 2001 From: R-Sourabh Date: Mon, 29 Apr 2024 16:23:06 +0530 Subject: [PATCH] Fixed: html tags not working in the translations (#82) --- src/main.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index a9bcbc0..69e87ef 100644 --- a/src/main.ts +++ b/src/main.ts @@ -28,7 +28,8 @@ import './theme/variables.css'; const app = createApp(App) .use(IonicVue, { - mode: 'md' + mode: 'md', + innerHTMLTemplatesEnabled: true }) .use(router) .use(i18n);