mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-17 02:29:37 +03:00
13 lines
195 B
JavaScript
13 lines
195 B
JavaScript
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
import store from './vuex/store'
|
|
|
|
Vue.config.debug = true
|
|
|
|
/* eslint-disable no-new */
|
|
new Vue({
|
|
el: 'body',
|
|
store,
|
|
components: { App }
|
|
})
|