- fixed strange things...

This commit is contained in:
Paolo Arena
2019-10-10 15:54:38 +02:00
parent 276b822fa5
commit 105d01904b
21 changed files with 432 additions and 0 deletions

13
src/shims-quasar.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
import Vue from 'vue'
declare module 'vue/types/vue' {
interface Vue {
$q: any
}
}
declare module 'vue/types/options' {
interface ComponentOptions<V extends Vue> {
preFectch?: (options: any) => void | Promise<void>
}
}