Vue components built for Vue3 powered by Uno CSS or tailwindcss
$toast.show('this is a test');
$toast.show({
type: 'danger',
message: 'single action toast',
timeout: 6,
primary: {
label: 'UNDO',
action: () => $toast.show('you clicked UNDO')
}
})
$modal.show({
type: 'danger',
title: 'This is the title property',
body: 'This is the body property.',
primary: {
label: 'Primary Action',
theme: 'red',
action: () => $toast.show('Primary Button clicked'),
},
secondary: {
label: 'Secondary Action',
theme: 'white',
action: () => $toast.show('Clicked Secondary'),
},
})
šŖ Interactive playground! - just run yarn; yarn dev
āØ Tons of other components that will be documented shortly!
yarn add --dev @tailvue/nuxt
nuxt.config.ts
modules: [
// ...
'@tailvue/nuxt',
],
Note If you are using Nuxt 2 you may need to put this in of the
buildModules
array
yarn add tailvue
import { useToast, useModal } from 'tailvue'
const $toast = useToast()
const $modal = useModal()
yarn add --dev @iconify/vue
tailwind.config.js
module.exports = {
content: [
...
"node_modules/tailvue/dist/tailvue.es.js",
],
}