jsdk-offical
Version:
JSDK is the most comprehensive TypeScript framework, like JDK.
17 lines (16 loc) • 446 B
JavaScript
JS.imports([
'$jsfx.datepicker',
'../../../libs/datepicker/1.9.0/locales/bootstrap-datepicker.zh-CN.min.js',
'../../../libs/datepicker/1.9.0/locales/bootstrap-datepicker.it.min.js'
]).then(() => {
new DatePicker({
id: 'txt1',
placeholder: '中文日期选择器',
locale: 'zh-CN'
});
new DatePicker({
id: 'txt2',
locale: 'it',
placeholder: 'Italian Date Picker'
});
});