Welcome to mirror list, hosted at ThFree Co, Russian Federation.

EmptyMailbox.vue « components « src - github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 16bc9fcba41190ee08c7498b270b6ade81705400 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<template>
	<div id="emptycontent">
		<IconMail :size="65" />
		<h2>{{ t('mail', 'No messages in this mailbox') }}</h2>
	</div>
</template>

<script>
import IconMail from 'vue-material-design-icons/Email'

export default {
	name: 'EmptyMailbox',
	components: {
		IconMail,
	},
}
</script>