15.11 Add an Email us Link

This commit is contained in:
Fredrick W Warren 2021-02-12 10:28:48 -08:00
parent 7ca8e1b995
commit ee30273261

View File

@ -61,6 +61,19 @@
</q-item-section>
</q-item>
<q-item
@click="emailUs"
tag="label"
v-ripple
>
<q-item-section>
<q-item-label>Email us</q-item-label>
</q-item-section>
<q-item-section side >
<q-icon name="chevron_right" />
</q-item-section>
</q-item>
</q-list>
</q-page>
</template>
@ -97,6 +110,9 @@ export default {
]),
visitOurWebsite () {
openURL('https://home.elder-geek.net')
},
emailUs () {
window.location.href = 'mailto:fred.warren@gmail.com?subject=Awesome Todo Feeback'
}
}
}