mirror of
https://github.com/tenrok/vue2-datepicker.git
synced 2026-05-28 02:44:07 +03:00
17 lines
288 B
JavaScript
17 lines
288 B
JavaScript
/* eslint-disable import/no-extraneous-dependencies */
|
|
import Vue from 'vue';
|
|
|
|
import DatePicker from '../src/index';
|
|
|
|
// import '../src/locale/zh-cn';
|
|
|
|
import '../src/style/index.scss';
|
|
|
|
import App from './app';
|
|
|
|
Vue.use(DatePicker);
|
|
|
|
new Vue({
|
|
render: h => h(App),
|
|
}).$mount('#app');
|