Skip to content

Commit

Permalink
fix(SPA): 组件名引用大小写修正
Browse files Browse the repository at this point in the history
(cherry picked from commit 104857a2bc3c684f6352dae48e1a216eaf06b27b)
  • Loading branch information
mutoe committed Nov 30, 2018
1 parent 8d5de49 commit acd7e8c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
</template>

<script>
import groupItem from '@/page/group/components/GroupItem.vue'
import GroupItem from '@/page/group/components/GroupItem.vue'
export default {
name: 'ProfileGroupGroups',
components: {
groupItem,
GroupItem,
},
data () {
return {
Expand Down
4 changes: 2 additions & 2 deletions resources/spa/src/plugins/message/messageList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</div>
</template>
<script>
import message from './message'
import Message from './message'
let seed = 0
const getUuid = () => {
Expand All @@ -24,7 +24,7 @@ const getUuid = () => {
export default {
name: 'MessageList',
components: {
message,
Message,
},
data () {
return {
Expand Down

0 comments on commit acd7e8c

Please sign in to comment.