You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-csc-ui/src/components/CscInlineAlertAlert.vue

28 lines
499 B

<template>
<csc-inline-alert
icon="alert"
color="negative"
v-bind="$attrs"
v-on="$listeners"
>
<slot />
<template
v-slot:action
>
<slot
name="action"
/>
</template>
</csc-inline-alert>
</template>
<script>
import CscInlineAlert from 'components/CscInlineAlert'
export default {
name: 'CscInlineAlertAlert',
components: {
CscInlineAlert
}
}
</script>