fix: telegram mail page use iframe show email (#561)

This commit is contained in:
Dream Hunter
2025-01-18 13:52:09 +08:00
committed by GitHub
parent 7b1c4cc72a
commit a22add0e14
+2 -1
View File
@@ -59,7 +59,8 @@ onMounted(async () => {
<n-tag v-if="showEMailTo" type="info"> <n-tag v-if="showEMailTo" type="info">
TO: {{ curMail.address }} TO: {{ curMail.address }}
</n-tag> </n-tag>
<div v-html="curMail.message" style="margin-top: 10px;"></div> <iframe :srcdoc="curMail.message" style="margin-top: 10px;width: 100%; height: 100%;">
</iframe>
</n-card> </n-card>
</div> </div>
</template> </template>