change name
This commit is contained in:
parent
27fa1ea763
commit
b87bf87193
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="errPage-container">
|
<div class="errPage-container">
|
||||||
<errorA />
|
<ErrorA />
|
||||||
<errorB />
|
<ErrorB />
|
||||||
<!-- $t is vue-i18n global function to translate lang -->
|
<!-- $t is vue-i18n global function to translate lang -->
|
||||||
<h3>{{ $t('errorLog.tips') }}</h3>
|
<h3>{{ $t('errorLog.tips') }}</h3>
|
||||||
<code>
|
<code>
|
||||||
|
@ -17,12 +17,12 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import errorA from './errorTestA'
|
import ErrorA from './components/ErrorTestA'
|
||||||
import errorB from './errorTestB'
|
import ErrorB from './components/ErrorTestB'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'ErrorLog',
|
name: 'ErrorLog',
|
||||||
components: { errorA, errorB }
|
components: { ErrorA, ErrorB }
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue