Notifications
3 newMS
Marcus Silva assigned you to Q3 Revenue Report
10 minutes ago
EW
Emma Wilson commented on Homepage Redesign
45 minutes ago
JM
James Miller mentioned you in Sprint Planning
2 hours ago
SC
Sarah Chen uploaded Q2 Analytics Deck
3 hours ago
DK
David Kim requested review on API Integration PR
5 hours ago
Toast
Toast notification examples.
Toast Positions
<button @click="showToast('top-right','Successfully saved!','success')" class="bg-alpine-500 hover:bg-alpine-600 text-white px-4 py-2 rounded-lg text-sm font-medium transition-colors">Top Right</button>
Toast Variants
<button @click="showToast('top-right','Operation completed successfully!','success')" class="bg-green-500 hover:bg-green-600 text-white px-4 py-2 rounded-lg text-sm font-medium transition-colors">Success Toast</button>
<button @click="showToast('top-right','Something went wrong!','error')" class="bg-red-500 hover:bg-red-600 text-white px-4 py-2 rounded-lg text-sm font-medium transition-colors">Error Toast</button>
Simple Toast Trigger
<button @click="showToast('top-right','Your changes have been saved!','success')" class="bg-green-500 hover:bg-green-600 text-white px-5 py-2.5 rounded-lg text-sm font-medium transition-colors">Show Success Toast</button>