pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
464 B
19 lines
464 B
import '@babel/polyfill';
|
|
// Import Component hooks before component definitions
|
|
import './component-hooks';
|
|
import Vue from 'vue';
|
|
import './plugins/vuetify';
|
|
import './plugins/vee-validate';
|
|
import App from './App.vue';
|
|
import router from './router';
|
|
import store from '@/store';
|
|
import './registerServiceWorker';
|
|
import 'vuetify/dist/vuetify.min.css';
|
|
|
|
Vue.config.productionTip = false;
|
|
|
|
new Vue({
|
|
router,
|
|
store,
|
|
render: (h) => h(App),
|
|
}).$mount('#app');
|
|
|