show mail content in modal on double click

This commit is contained in:
grimhilt
2023-04-11 18:59:10 +02:00
parent 8cc738c9b2
commit 9842ebeb12
6 changed files with 122 additions and 63 deletions

View File

@@ -0,0 +1,28 @@
<script setup lang="ts">
import { defineProps, onMounted, ref, watch, PropType } from "vue";
import { decodeEmojis } from "../../../utils/string";
import { removeDuplicates } from "../../../utils/array";
import DOMPurify from "dompurify";
import { Address, Message } from "@/store/models/model";
const props = defineProps({
msg: Object as PropType<Message>,
});
</script>
<template>
<div>
<div>mark as not read</div>
<div>flag favorite</div>
<div>reply</div>
<div>delete from all</div>
<div>delete from remote</div>
<div>transfer</div>
<div>see source</div>
</div>
</template>
<style scoped>
div {
text-align: center;
}
</style>