Initial commit

This commit is contained in:
kandrusyak
2023-01-15 22:39:37 +03:00
parent 1d6c521ed6
commit 58c8fe59ef
40 changed files with 649 additions and 71 deletions

16
index.js Normal file
View 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
}