Positions
Nuxt Notify supports 6 positions for displaying toast notifications.
Available positions
top-right(default)top-lefttop-centerbottom-rightbottom-leftbottom-center
Set a global position
Use notify.position in nuxt.config.ts:
nuxt.config.ts
Override position per toast
You can override the global position for an individual toast using toast.add().
Top right
Example.vue
Top left
Example.vue
Top center
Example.vue
Bottom right
Example.vue
Bottom left
Example.vue
Bottom center
Example.vue
When to use each position
Top positions
- top-right: default choice, doesn’t interfere with most UIs
- top-left: good for left-aligned layouts
- top-center: great for important announcements
Bottom positions
- bottom-right: nice for background tasks and status updates
- bottom-left: works well for chat-like UIs
- bottom-center: good for “banner” style messages
Stick to one position across your app for consistency, unless you have a specific reason to vary it.
Multiple positions at once
You can show different toasts in different positions:
Example.vue
