Add missing semicolons

This commit is contained in:
Samuel Lorch 2023-04-04 17:06:18 +02:00
parent dec15e19bc
commit 3794296e45

View file

@ -31,13 +31,13 @@ app.use(head);
app.use(ToastPlugin); app.use(ToastPlugin);
// Global Components // Global Components
app.component('PillBar', PillBar) app.component('PillBar', PillBar);
app.component('TextBox', TextBox) app.component('TextBox', TextBox);
app.component('NumberBox', NumberBox) app.component('NumberBox', NumberBox);
app.component('MultilineTextBox', MultilineTextBox) app.component('MultilineTextBox', MultilineTextBox);
app.component('CheckBox', CheckBox) app.component('CheckBox', CheckBox);
app.component('ValidationForm', Form) app.component('ValidationForm', Form);
app.component('Field', Field) app.component('Field', Field);
app.component('ErrorMessage', ErrorMessage) app.component('ErrorMessage', ErrorMessage);
app.mount('#app'); app.mount('#app');