2
0
mirror of https://github.com/tenrok/vue2-datepicker.git synced 2026-05-17 18:59:38 +03:00
Files
2019-11-14 18:46:31 +08:00

13 lines
203 B
JavaScript

import App from './app';
window.DatePicker.locale('en');
new window.Vue({
render: h =>
h(App, {
props: {
changeLocale: window.DatePicker.locale,
},
}),
}).$mount('#app');