Skip to content

Commit

Permalink
fix(ui): register new alert components
Browse files Browse the repository at this point in the history
  • Loading branch information
gravitano committed May 31, 2023
1 parent e6a9b2a commit 26dd1c1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/ui/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type {Plugin} from 'vue';
import VBtn from '@morpheme/button';
import VAlert from '@morpheme/alert';
import {VAlert, VAlertTitle, VAlertGroup} from '@morpheme/alert';
import VSpinner from '@morpheme/spinner';
import VAppBar from '@morpheme/app-bar';
import VBadge from '@morpheme/badge';
Expand Down Expand Up @@ -79,7 +79,7 @@ import {
StepperNumber,
} from '@morpheme/stepper';
import VText from '@morpheme/text';
import VAppShell from '@morpheme/app-shell';
import {VAppShell, VMain} from '@morpheme/app-shell';
import VProgressCircular from '@morpheme/progress-circular';
import {
VTimeline,
Expand All @@ -93,6 +93,8 @@ import {VBanner, VBannerText} from '@morpheme/banner';
const plugin: Plugin = {
install: (app) => {
app.component('VAlert', VAlert);
app.component('VAlertTitle', VAlertTitle);
app.component('VAlertGroup', VAlertGroup);
app.component('VBtn', VBtn);
app.component('VAppBar', VAppBar);
app.component('VBadge', VBadge);
Expand Down Expand Up @@ -164,6 +166,7 @@ const plugin: Plugin = {
app.component('VStepperNumber', StepperNumber);
app.component('VText', VText);
app.component('VAppShell', VAppShell);
app.component('VMain', VMain);
app.component('VProgressCircular', VProgressCircular);
app.component('VTimeline', VTimeline);
app.component('VTimelineDivider', VTimelineDivider);
Expand Down

0 comments on commit 26dd1c1

Please sign in to comment.