base_ui/components/global
2025-02-01 13:04:55 +03:30
..
AutoComplation.vue first commit 2025-02-01 13:04:55 +03:30
BaseModal.vue first commit 2025-02-01 13:04:55 +03:30
BaseModalV2.vue first commit 2025-02-01 13:04:55 +03:30
BreadCrumb.vue first commit 2025-02-01 13:04:55 +03:30
ButtonComponent.vue first commit 2025-02-01 13:04:55 +03:30
ContextMenu.vue first commit 2025-02-01 13:04:55 +03:30
FormBuilder.vue first commit 2025-02-01 13:04:55 +03:30
GlobalJahatModal.vue first commit 2025-02-01 13:04:55 +03:30
IconTextButton.vue first commit 2025-02-01 13:04:55 +03:30
JahatPagination.vue first commit 2025-02-01 13:04:55 +03:30
MoreButtonComponent.vue first commit 2025-02-01 13:04:55 +03:30
MorePagination.vue first commit 2025-02-01 13:04:55 +03:30
MyList.vue first commit 2025-02-01 13:04:55 +03:30
MyTable.vue first commit 2025-02-01 13:04:55 +03:30
MyVueTreeListV2.vue first commit 2025-02-01 13:04:55 +03:30
NoData.vue first commit 2025-02-01 13:04:55 +03:30
Notification.vue first commit 2025-02-01 13:04:55 +03:30
NotificationItem.vue first commit 2025-02-01 13:04:55 +03:30
readme.me first commit 2025-02-01 13:04:55 +03:30
RightClickComponent.vue first commit 2025-02-01 13:04:55 +03:30
SelectLanguageDropdown.vue first commit 2025-02-01 13:04:55 +03:30
SubHeader.vue first commit 2025-02-01 13:04:55 +03:30
SuggestionComponent.vue first commit 2025-02-01 13:04:55 +03:30
SwitchComponent.vue first commit 2025-02-01 13:04:55 +03:30
TableNoData.vue first commit 2025-02-01 13:04:55 +03:30
TheButtonLoading.vue first commit 2025-02-01 13:04:55 +03:30
TheContentLoading.vue first commit 2025-02-01 13:04:55 +03:30
TheNavbar.vue first commit 2025-02-01 13:04:55 +03:30
TheSidebar.vue first commit 2025-02-01 13:04:55 +03:30
ToggleButton.vue first commit 2025-02-01 13:04:55 +03:30
TripleSwitch.vue first commit 2025-02-01 13:04:55 +03:30
UserAvatarDropdown.vue first commit 2025-02-01 13:04:55 +03:30

Alternatively, though not recommended, you can register all your
components globally, which will create async chunks for all your
components and make them available throughout your application.

  export default defineNuxtConfig({
    components: {
+     global: true,
+     dirs: ['~/components']
    },
  })

You can also selectively register some components globally by 
placing them in a ~/components/global directory, or by using a
.global.vue suffix in the filename. As noted above, each global
component is rendered in a separate chunk, so be careful not to
overuse this feature.