Initial commit
This commit is contained in:
16
index.js
Normal file
16
index.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import VButton from '@/components/VButton.vue';
|
||||
import VInput from '@/components/VInput.vue';
|
||||
import VSelect from '@/components/VSelect.vue';
|
||||
import {Quasar} from 'quasar';
|
||||
import quasarUserOptions from '@/quasar-user-options';
|
||||
|
||||
function install(app) {
|
||||
app.use(Quasar, quasarUserOptions)
|
||||
app.component(VButton.name, VButton);
|
||||
app.component(VInput.name, VInput);
|
||||
app.component(VSelect.name, VSelect);
|
||||
}
|
||||
|
||||
export {
|
||||
install
|
||||
}
|
||||
Reference in New Issue
Block a user