adding location to ranges and more control on MyCalendarRanges

This commit is contained in:
2022-06-29 15:28:37 +02:00
parent 809a0a38ab
commit 849e7158e4
13 changed files with 357 additions and 78 deletions

14
src/vue-multiselect.d.ts vendored Normal file
View File

@@ -0,0 +1,14 @@
declare module "vue-multiselect" {
import { defineComponent } from 'vue'
export interface VueMultiselectProps<T> {
options: T;
searchable: boolean;
trackBy: keyof T;
label: keyof T;
};
const Component: ReturnType<typeof defineComponent<VueMultiselectProps<T>>>;
export default Component
}