4
2
Fork 0
app/src/main.js

7 lines
156 B
JavaScript
Raw Normal View History

2020-10-23 21:50:02 +00:00
import { createApp } from 'vue'
import App from './App.vue'
2020-11-02 12:06:58 +00:00
import {store} from './store/store'
2020-10-23 21:50:02 +00:00
2020-10-26 21:07:59 +00:00
const app = createApp(App)
app.use(store)
app.mount('#app')