mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-11 19:08:20 +00:00
Register Singe and MuliSelect Globally
This commit is contained in:
parent
89abf82d1b
commit
cdef4ee522
1 changed files with 4 additions and 0 deletions
|
@ -10,6 +10,8 @@ import TextBox from "./components/inputs/TextBox.vue";
|
||||||
import NumberBox from "./components/inputs/NumberBox.vue";
|
import NumberBox from "./components/inputs/NumberBox.vue";
|
||||||
import MultilineTextBox from "./components/inputs/MultilineTextBox.vue";
|
import MultilineTextBox from "./components/inputs/MultilineTextBox.vue";
|
||||||
import CheckBox from "./components/inputs/CheckBox.vue";
|
import CheckBox from "./components/inputs/CheckBox.vue";
|
||||||
|
import SingleSelect from './components/inputs/MultiSelect.vue';
|
||||||
|
import MultiSelect from './components/inputs/MultiSelect.vue';
|
||||||
|
|
||||||
import { Form, Field, ErrorMessage } from 'vee-validate';
|
import { Form, Field, ErrorMessage } from 'vee-validate';
|
||||||
|
|
||||||
|
@ -39,5 +41,7 @@ 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.component('SingleSelect', SingleSelect);
|
||||||
|
app.component('MultiSelect', MultiSelect);
|
||||||
|
|
||||||
app.mount('#app');
|
app.mount('#app');
|
||||||
|
|
Loading…
Add table
Reference in a new issue