UNPKG

@sandlada/vue-mdc

Version:

![Vue MDC Logo](https://raw.githubusercontent.com/sandlada/vue-mdc/refs/heads/main/docs/vue-mdc-cover.png)

15 lines (12 loc) 284 B
/** * @license * Copyright 2024 glare-labs & bre97-web * SPDX-License-Identifier: MIT */ export type TButtonTarget = '_blank' | '_parent' | '_self' | '_top' export const ButtonTarget = { Blank: '_blank', Parent: '_parent', Self: '_self', Top: '_top', } as const