mirror of
https://github.com/tenrok/vue2-datepicker.git
synced 2026-05-17 07:59:40 +03:00
14 lines
264 B
JavaScript
14 lines
264 B
JavaScript
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
import Vue from 'vue';
|
|
|
|
import DatePicker from '../src/index';
|
|
import '../src/style/index.scss';
|
|
|
|
import App from './app';
|
|
|
|
DatePicker.install(Vue);
|
|
|
|
new Vue({
|
|
render: h => h(App),
|
|
}).$mount('#app');
|