kickoff
This commit is contained in:
12
src/main.js
12
src/main.js
@ -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"
|
Reference in New Issue
Block a user