mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-19 15:48:04 +01:00
pug to html
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user