Skip to content

Commit b87bf87

Browse files
committed
change name
1 parent 27fa1ea commit b87bf87

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/views/error-log/index.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<div class="errPage-container">
3-
<errorA />
4-
<errorB />
3+
<ErrorA />
4+
<ErrorB />
55
<!-- $t is vue-i18n global function to translate lang -->
66
<h3>{{ $t('errorLog.tips') }}</h3>
77
<code>
@@ -17,12 +17,12 @@
1717
</template>
1818

1919
<script>
20-
import errorA from './errorTestA'
21-
import errorB from './errorTestB'
20+
import ErrorA from './components/ErrorTestA'
21+
import ErrorB from './components/ErrorTestB'
2222
2323
export default {
2424
name: 'ErrorLog',
25-
components: { errorA, errorB }
25+
components: { ErrorA, ErrorB }
2626
}
2727
</script>
2828

0 commit comments

Comments
 (0)