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.

14 lines
398 B

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