fix(BaseButton): prop type

This commit is contained in:
Dominik Pschenitschni 2023-01-03 20:35:28 +01:00
parent 7be8e892e2
commit 9523f60763
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
1 changed files with 2 additions and 2 deletions

View File

@ -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
}