This commit is contained in:
scammo
2021-06-07 17:41:25 +02:00
parent 136b12b43f
commit 7a616b5083
91 changed files with 378 additions and 137 deletions

View File

@ -1,5 +1,13 @@
import { createApp } from 'vue'
import { createApp } from 'vue/dist/vue.esm-bundler';
import App from './App.vue'
import router from './router'
createApp(App).use(router).mount('#app')
import 'bootstrap/dist/css/bootstrap.min.css'
const app = createApp(App)
app.use(router)
app.mount('#app')
app.config.globalProperties.apiUrl="todo"