From 788222967b88284e6fede8bddb9356c10c445ec4 Mon Sep 17 00:00:00 2001 From: JustTemmie <47639983+JustTemmie@users.noreply.github.com> Date: Wed, 16 Jul 2025 05:03:18 +0200 Subject: [PATCH] style: clean up imports for settings page --- components/Settings/AppSettings/index.ts | 11 +++++++++++ components/Settings/UserSettings/index.ts | 13 +++++++++++++ pages/settings.vue | 15 ++++----------- 3 files changed, 28 insertions(+), 11 deletions(-) create mode 100644 components/Settings/AppSettings/index.ts create mode 100644 components/Settings/UserSettings/index.ts diff --git a/components/Settings/AppSettings/index.ts b/components/Settings/AppSettings/index.ts new file mode 100644 index 0000000..27890a5 --- /dev/null +++ b/components/Settings/AppSettings/index.ts @@ -0,0 +1,11 @@ +import Appearance from './Appearance.vue'; +import Notifications from './Notifications.vue'; +import Keybinds from './Keybinds.vue'; +import Language from './Language.vue'; + +export { + Appearance, + Notifications, + Keybinds, + Language, +} \ No newline at end of file diff --git a/components/Settings/UserSettings/index.ts b/components/Settings/UserSettings/index.ts new file mode 100644 index 0000000..b2129e0 --- /dev/null +++ b/components/Settings/UserSettings/index.ts @@ -0,0 +1,13 @@ +import Profile from './Profile.vue'; +import Account from './Account.vue'; +import Privacy from './Privacy.vue'; +import Devices from './Devices.vue'; +import Connections from './Connections.vue'; + +export { + Profile, + Account, + Privacy, + Devices, + Connections, +} \ No newline at end of file diff --git a/pages/settings.vue b/pages/settings.vue index 8b270bc..ae9745a 100644 --- a/pages/settings.vue +++ b/pages/settings.vue @@ -46,9 +46,13 @@