oui-kit
Version:
🎯 *UI toolkit with a French touch* 🇫🇷
26 lines (19 loc) • 565 B
Markdown
# oui-notification
> [!NOTE]
> **oui** componentents are *headless* i.e. they do not come with CSS by default. These examples import CSS syles, but you are free to do it from scratch as well.
Simple notofications
```vue
<script lang="ts" setup>
import { emitNotificationInfo, OuiNotificationActivator } from 'oui-notification'
import 'oui-notification/css'
function doEmit() {
emitNotificationInfo('Hello', 'This is a test', 2000)
}
</script>
<template>
<button @click="doEmit">
Notification
</button>
<OuiNotificationActivator />
</template>
```