feat: 时间选择器本地 支持时区

This commit is contained in:
zhangyu
2021-06-18 14:35:29 +08:00
parent 50e1d8f04b
commit 359d88a5b9
46 changed files with 6228 additions and 5 deletions

21
typings/vue-shim.d.ts vendored Normal file
View File

@@ -0,0 +1,21 @@
declare module '*.vue' {
import { App, defineComponent } from 'vue'
const component: ReturnType<typeof defineComponent> & {
install(app: App): void
}
export default component
}
declare type Nullable<T> = T | null;
declare type CustomizedHTMLElement<T> = HTMLElement & T
declare type Indexable<T> = {
[key: string]: T
}
declare type Hash<T> = Indexable<T>
declare type TimeoutHandle = ReturnType<typeof global.setTimeout>
declare type ComponentSize = 'large' | 'medium' | 'small' | 'mini'