pug to html

This commit is contained in:
Matteo Pagliazzi
2019-10-12 16:33:05 +02:00
parent 88243a32fa
commit 07349c70bc
236 changed files with 16708 additions and 9648 deletions

View File

@@ -1,7 +1,15 @@
<template lang="pug">
.notifications(:class="notificationsTopPos")
div(v-for='notification in notificationStore', :key='notification.uuid')
notification(:notification='notification')
<template>
<div
class="notifications"
:class="notificationsTopPos"
>
<div
v-for="notification in notificationStore"
:key="notification.uuid"
>
<notification :notification="notification" />
</div>
</div>
</template>
<style lang="scss" scoped>