2
0
mirror of https://github.com/tenrok/vue2-datepicker.git synced 2026-05-26 03:04:06 +03:00

build: add dev

This commit is contained in:
mengxiong10
2019-11-11 11:15:16 +08:00
parent 4b09eaf41e
commit e2b24fa833
3 changed files with 28 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
// 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');