🚀 Simple notifications implementation in Vue.js 3 and Tailwind
🎉 Vue.js Simple Notifications allows you to add extra simple notifications to your app with ease.
npm install
npm run dev
If you want to use the component on your own project you’ll need to use vue 3 and install the following libraries:
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,ts,vue}",
],
theme: {
extend: {},
},
plugins: [],
}
npm install uuid