cozy-rsvp/app/views/dashboardView.vue

31 lines
692 B
Vue
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template lang="pug">
div
h2 {{ 'My RSVPs' }}
ul
li
button {{ 'New 15 mins meeting' }}
li
button {{ 'New 30 mins meeting' }}
li
button {{ 'New 60 mins meeting' }}
li
button {{ 'New meeting' }}
ul
li
h2 {{ 'Tuesday, November 8, 2016' }}
table
tr
td {{ '09:30am - 09:45am' }}
td
a(href='mailto:phyks@example.org') {{ 'Phyks' }}
span {{ ' with you' }}
br
span {{ '(15 minutes)' }}
td
select
option {{ 'Accept' }}
option {{ 'Discard' }}
</template>