[Take 2] Register <drawer-collection> in Vue app for relational interface extensions (#18153)

This commit is contained in:
Joshua Bemenderfer
2023-04-12 09:08:07 -04:00
committed by GitHub
parent cfe5227798
commit eea13b43e6
2 changed files with 3 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ import RenderTemplate from '@/views/private/components/render-template.vue';
import SidebarDetail from '@/views/private/components/sidebar-detail.vue';
import UserPopover from '@/views/private/components/user-popover.vue';
import ValueNull from '@/views/private/components/value-null.vue';
import DrawerCollection from '@/views/private/components/drawer-collection.vue';
import DrawerItem from '@/views/private/components/drawer-item.vue';
import DrawerBatch from '@/views/private/components/drawer-batch.vue';
import { App } from 'vue';
@@ -145,6 +146,7 @@ export function registerComponents(app: App): void {
app.component('SidebarDetail', SidebarDetail);
app.component('UserPopover', UserPopover);
app.component('ValueNull', ValueNull);
app.component('DrawerCollection', DrawerCollection);
app.component('DrawerItem', DrawerItem);
app.component('DrawerBatch', DrawerBatch);
}