We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27fa1ea commit b87bf87Copy full SHA for b87bf87
src/views/error-log/errorTestA.vue renamed to src/views/error-log/components/ErrorTestA.vue
src/views/error-log/errorTestB.vue renamed to src/views/error-log/components/ErrorTestB.vue
src/views/error-log/index.vue
@@ -1,7 +1,7 @@
1
<template>
2
<div class="errPage-container">
3
- <errorA />
4
- <errorB />
+ <ErrorA />
+ <ErrorB />
5
<!-- $t is vue-i18n global function to translate lang -->
6
<h3>{{ $t('errorLog.tips') }}</h3>
7
<code>
@@ -17,12 +17,12 @@
17
</template>
18
19
<script>
20
-import errorA from './errorTestA'
21
-import errorB from './errorTestB'
+import ErrorA from './components/ErrorTestA'
+import ErrorB from './components/ErrorTestB'
22
23
export default {
24
name: 'ErrorLog',
25
- components: { errorA, errorB }
+ components: { ErrorA, ErrorB }
26
}
27
</script>
28
0 commit comments