45fef9b431
* perf[navbar]: set langSelect to component && refine errorLog component
* feat[login]:add 18n to login form
* fix[pagination]: fixed when selected page-sizes
* perf[i18n]:dashboard document svg permission
* perf[charts]: perf effect
* perf[i18n]:excel && zip
* perf[i18n]: table && errorLog && theme
* perf[i18n]: components
* perf[i18n]: direct use $t
* perf[i18n]: complex-table
* update README.md
* update README.md 📘
* perf[i18n]: refine code comments
33 lines
798 B
Vue
33 lines
798 B
Vue
<template>
|
|
<div class="errPage-container">
|
|
<errorA></errorA>
|
|
<errorB></errorB>
|
|
<!-- $t is vue-i18n global function to translate lang -->
|
|
<h3>{{$t('errorLog.tips')}}</h3>
|
|
<code>
|
|
{{$t('errorLog.description')}}
|
|
<a target="_blank" class="link-type" href="https://panjiachen.github.io/vue-element-admin-site/#/error?id=%e4%bb%a3%e7%a0%81">
|
|
{{$t('errorLog.documentation')}}
|
|
</a>
|
|
</code>
|
|
<a href="#">
|
|
<img src='https://wpimg.wallstcn.com/360e4842-4db5-42d0-b078-f9a84a825546.gif'>
|
|
</a>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import errorA from './errorTestA'
|
|
import errorB from './errorTestB'
|
|
|
|
export default {
|
|
name: 'errorLog',
|
|
components: { errorA, errorB }
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.errPage-container {
|
|
padding: 30px;
|
|
}
|
|
</style>
|