Skip to content

Commit

Permalink
[#4608] Import LuxDataTable, LuxGridItem, LuxGridContainer
Browse files Browse the repository at this point in the history
Co-authored-by: Jane Sandberg <[email protected]>
  • Loading branch information
christinach and sandbergja committed Jan 7, 2025
1 parent 71d4d73 commit bbee777
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion app/javascript/orangelight/lux_import.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
import { createApp } from 'vue';
import 'lux-design-system/dist/style.css';
import { LuxAlert, LuxLibraryFooter } from 'lux-design-system';
import {
LuxAlert,
LuxLibraryFooter,
LuxDataTable,
LuxWrapper,
LuxGridItem,
LuxGridContainer,
} from 'lux-design-system';
import OrangelightHeader from '../orangelight/vue_components/orangelight_header.vue';
import OnlineOptions from './vue_components/online_options.vue';

Expand All @@ -13,6 +20,10 @@ export function luxImport() {
for (let i = 0; i < elements.length; i++) {
createMyApp()
.component('lux-alert', LuxAlert)
.component('lux-data-table', LuxDataTable)
.component('lux-wrapper', LuxWrapper)
.component('lux-grid-item', LuxGridItem)
.component('lux-grid-container', LuxGridContainer)
.component('lux-library-footer', LuxLibraryFooter)
.component('online-options', OnlineOptions)
.component('orangelight-header', OrangelightHeader)
Expand Down

0 comments on commit bbee777

Please sign in to comment.