Abstract away Modal

This commit is contained in:
Jeffrey Biles
2020-03-18 13:10:11 -07:00
parent 050bcfc977
commit 874481cbde
3 changed files with 32 additions and 9 deletions

View File

@@ -0,0 +1,20 @@
<template>
<div>
From: {{email.from}}<br>
Subject: <strong>{{email.subject}}</strong>
<p>{{email.body}}</p>
</div>
</template>
<script>
export default {
props: {
email: {
type: Object
},
}
}
</script>
<style scoped>
</style>