Skip to content

Commit acd7e8c

Browse files
committed
fix(SPA): 组件名引用大小写修正
(cherry picked from commit 104857a2bc3c684f6352dae48e1a216eaf06b27b)
1 parent 8d5de49 commit acd7e8c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
File renamed without changes.

resources/spa/src/page/profile/children/ProfileGroup.group.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
</template>
2525

2626
<script>
27-
import groupItem from '@/page/group/components/GroupItem.vue'
27+
import GroupItem from '@/page/group/components/GroupItem.vue'
2828
2929
export default {
3030
name: 'ProfileGroupGroups',
3131
components: {
32-
groupItem,
32+
GroupItem,
3333
},
3434
data () {
3535
return {

resources/spa/src/plugins/message/messageList.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</div>
1616
</template>
1717
<script>
18-
import message from './message'
18+
import Message from './message'
1919
2020
let seed = 0
2121
const getUuid = () => {
@@ -24,7 +24,7 @@ const getUuid = () => {
2424
export default {
2525
name: 'MessageList',
2626
components: {
27-
message,
27+
Message,
2828
},
2929
data () {
3030
return {

0 commit comments

Comments
 (0)