mirror of
https://github.com/tenrok/vue2-datepicker.git
synced 2026-06-05 03:42:27 +03:00
8 lines
124 B
JavaScript
8 lines
124 B
JavaScript
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
|
|
new Vue({ // eslint-disable-line
|
|
el: '#app',
|
|
render: h => h(App)
|
|
})
|