mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-10 07:52:23 +03:00
11 lines
170 B
JavaScript
11 lines
170 B
JavaScript
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
import store from './vuex/store'
|
|
|
|
/* eslint-disable no-new */
|
|
new Vue({
|
|
el: 'body',
|
|
store,
|
|
components: { App }
|
|
})
|