From c0e5635ade9ebbc2bb1c5cb455e4e976274d4b8e Mon Sep 17 00:00:00 2001 From: Louis Chemineau Date: Thu, 3 Oct 2024 15:02:44 +0200 Subject: fix: Vue app names This improves the debugging experience in the vue dev tool. Signed-off-by: Louis Chemineau --- core/src/components/ContactsMenu.js | 1 + core/src/components/UserMenu.js | 1 + 2 files changed, 2 insertions(+) (limited to 'core') diff --git a/core/src/components/ContactsMenu.js b/core/src/components/ContactsMenu.js index 5dd395da34c..e07a699ab9f 100644 --- a/core/src/components/ContactsMenu.js +++ b/core/src/components/ContactsMenu.js @@ -15,6 +15,7 @@ export const setUp = () => { if (mountPoint) { // eslint-disable-next-line no-new new Vue({ + name: 'ContactsMenuRoot', el: mountPoint, render: h => h(ContactsMenu), }) diff --git a/core/src/components/UserMenu.js b/core/src/components/UserMenu.js index 37895bb6166..5c488f2341e 100644 --- a/core/src/components/UserMenu.js +++ b/core/src/components/UserMenu.js @@ -12,6 +12,7 @@ export const setUp = () => { if (mountPoint) { // eslint-disable-next-line no-new new Vue({ + name: 'AccountMenuRoot', el: mountPoint, render: h => h(AccountMenu), }) -- cgit v1.2.3