diff --git a/src/components/base/BaseButton.vue b/src/components/base/BaseButton.vue index fe1285329..82e0cd5e3 100644 --- a/src/components/base/BaseButton.vue +++ b/src/components/base/BaseButton.vue @@ -61,12 +61,12 @@ export type BaseButtonTypes = typeof BASE_BUTTON_TYPES_MAP[keyof typeof BASE_BUT import {unrefElement} from '@vueuse/core' import {ref, type HTMLAttributes} from 'vue' -import type {RouteLocationNamedRaw} from 'vue-router' +import type {RouteLocationRaw} from 'vue-router' export interface BaseButtonProps extends HTMLAttributes { type?: BaseButtonTypes disabled?: boolean - to?: RouteLocationNamedRaw + to?: RouteLocationRaw href?: string }