You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import { defineComponent as _defineComponent } from 'vue'
import { unref as _unref, renderSlot as _renderSlot, mergeProps as _mergeProps, openBlock as _openBlock, createElementBlock as _createElementBlock } from "vue"
const _hoisted_1 = ["role", "aria-live"]
import { computed, useAttrs } from "vue";
import { alertClasses, type AlertVariant } from "./alert.shared";
import { defaultIfEmpty, oneOfOr } from "../../utils/expr";
export default /*@__PURE__*/_defineComponent({
...{ name: "Alert", inheritAttrs: false },
__name: 'Alert',
props: {
variant: { type: null, required: false },
role: { type: String, required: false },
ariaLive: { type: String, required: false }
},
setup(__props: any) {
const props = __props;
const attrs = useAttrs();
const callerClass = computed(() => attrs.class as string | undefined);