mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-11 02:48:21 +00:00
Add missing semicolons
This commit is contained in:
parent
dec15e19bc
commit
3794296e45
1 changed files with 8 additions and 8 deletions
|
@ -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');
|
||||||
|
|
Loading…
Add table
Reference in a new issue