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

NotFoundView.vue « views « src - github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f1478f26385d18fb4af59ab9a3d2ce154ba254a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<template>
	<div id="emptycontent">
		<div id="emptycontent-icon" class="icon-search" />
		<h2>{{ t('spreed', 'The conversation does not exist') }}</h2>
		<p class="emptycontent-additional">
			{{ t('spreed','Join a conversation or start a new one!') }}
		</p>
	</div>
</template>

<script>
export default {
	name: 'NotFoundView',
}
</script>

<style lang="scss" scoped>
</style>