diff --git a/src/composables/use-route.ts b/src/composables/use-route.ts index f06c0680e..f387764dc 100644 --- a/src/composables/use-route.ts +++ b/src/composables/use-route.ts @@ -7,10 +7,10 @@ import { getCurrentInstance, ComponentPublicInstance, } from 'vue'; -import type { RouteLocation } from 'vue-router'; +import type { RouteLocationRaw } from 'vue-router'; export const routeProps = { - to: [String, Object] as PropType, + to: [String, Object] as PropType, url: String, replace: Boolean, }; diff --git a/src/vue-tsx-shim.d.ts b/src/vue-tsx-shim.d.ts index 4302cbb7a..a9268530a 100644 --- a/src/vue-tsx-shim.d.ts +++ b/src/vue-tsx-shim.d.ts @@ -14,5 +14,6 @@ declare module 'vue' { onClosed?: EventHandler; onChange?: EventHandler; onToggle?: EventHandler; + onClickStep?: EventHandler; } } diff --git a/test/dom.ts b/test/dom.ts index c07be8935..1497e39aa 100644 --- a/test/dom.ts +++ b/test/dom.ts @@ -37,10 +37,10 @@ export function mockScrollIntoView() { return fn; } -export function mockGetBoundingClientRect(rect: DOMRect): () => void { +export function mockGetBoundingClientRect(rect: Partial): () => void { const originMethod = Element.prototype.getBoundingClientRect; - Element.prototype.getBoundingClientRect = jest.fn(() => rect); + Element.prototype.getBoundingClientRect = jest.fn(() => rect as DOMRect); return function () { Element.prototype.getBoundingClientRect = originMethod;