4
2
Fork 0
app/src/main.js

7 lines
156 B
JavaScript

import { createApp } from 'vue'
import App from './App.vue'
import {store} from './store/store'
const app = createApp(App)
app.use(store)
app.mount('#app')