mobile-vue-datepick
Version:
A Vue.js project,vue-calendar,vuejs,vue
20 lines (16 loc) • 486 B
JavaScript
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
// import Picker from '';
// import Calendar from 'vue2-datepick';
import Calendar from './modules/index';
Vue.use(Calendar);
// Vue.use(Picker);
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',
components: { App },
template: '<App/>'
})