fix: 修改名称规范问题

This commit is contained in:
MTrun
2022-03-14 19:52:01 +08:00
parent b60843d3ed
commit f4df648e5a
70 changed files with 136 additions and 155 deletions
-3
View File
@@ -1,3 +0,0 @@
import GoFooter from './index.vue'
export { GoFooter }
-3
View File
@@ -1,3 +0,0 @@
import GoHeader from './index.vue'
export { GoHeader }
-3
View File
@@ -1,3 +0,0 @@
import HeaderPro from './index.vue'
export { HeaderPro }
@@ -0,0 +1,3 @@
import LayoutFooter from './index.vue'
export { LayoutFooter }
@@ -0,0 +1,3 @@
import LayoutHeader from './index.vue'
export { LayoutHeader }
@@ -0,0 +1,3 @@
import LayoutHeaderPro from './index.vue'
export { LayoutHeaderPro }
@@ -1,5 +1,5 @@
<template>
<GoHeader>
<layout-header>
<template #left>
<slot name="left"></slot>
</template>
@@ -10,12 +10,12 @@
<slot name="ri-left"></slot>
</template>
<template #ri-right>
<uer-info></uer-info>
<user-info></user-info>
<slot name="ri-right"></slot>
</template>
</GoHeader>
</layout-header>
</template>
<script setup lang="ts">
import { GoHeader } from '@/layout/components/GoHeader'
import { LayoutHeader } from '@/layout/components/LayoutHeader'
import { UserInfo } from '@/components/UserInfo'
</script>
@@ -0,0 +1,3 @@
import LayoutMain from './index.vue';
export { LayoutMain };
@@ -0,0 +1,3 @@
import LayoutTransitionMain from './index.vue';
export { LayoutTransitionMain };
-3
View File
@@ -1,3 +0,0 @@
import MainView from './index.vue';
export { MainView };
@@ -1,3 +0,0 @@
import TransitionMain from './index.vue';
export { TransitionMain };
+2 -2
View File
@@ -1,7 +1,7 @@
<template>
<MainView></MainView>
<layout-main></layout-main>
</template>
<script lang="ts" setup>
import { MainView } from '@/layout/components/Main/index'
import { LayoutMain } from '@/layout/components/LayoutMain/index'
</script>