2018-10-30 01:36:20 +01:00
|
|
|
<template>
|
|
|
|
<div class="wjqjnyhzogztorhrdgcpqlkxhkmuetgj">
|
2018-11-08 19:44:35 +01:00
|
|
|
<p><fa icon="exclamation-triangle"/> {{ $t('@.error.title') }}</p>
|
|
|
|
<ui-button @click="() => $emit('retry')">{{ $t('@.error.retry') }}</ui-button>
|
2018-10-30 01:36:20 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2018-11-08 19:44:35 +01:00
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import i18n from '../../../i18n';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
i18n: i18n()
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2018-10-30 01:36:20 +01:00
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.wjqjnyhzogztorhrdgcpqlkxhkmuetgj
|
|
|
|
max-width 350px
|
|
|
|
margin 0 auto
|
|
|
|
padding 32px
|
|
|
|
text-align center
|
|
|
|
color var(--text)
|
|
|
|
|
|
|
|
> p
|
|
|
|
margin 0 0 8px 0
|
|
|
|
|
|
|
|
</style>
|