teleport(to=".w-app")
transition-group(
tag="div"
class="w-notification-manager"
:class="{ 'w-notification-manager--left': conf.align === 'left' }"
:name="transition"
appear)
template(v-for="notif in notifications")
w-alert.white--bg(
v-if="notif._value"
:key="notif._uid"
v-model="notif._value"
@close="notif.dismiss"
v-bind="notifProps(notif)")
div(v-html="notif.message")