You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
397 B

  1. #alerts
  2. ul
  3. template(v-for="aItem in children", track-by='_uid')
  4. .notification(v-bind:class='aItem.class')
  5. button.delete(v-on:click='acknowledge(aItem._uid)')
  6. h3 {{ aItem.title }}
  7. span {{ aItem.message }}
  8. if appflash.length > 0
  9. script(type='text/javascript')
  10. | var alertsData =
  11. != JSON.stringify(appflash)
  12. | ;
  13. else
  14. script(type='text/javascript')
  15. | var alertsData = [];