mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-06 03:58:04 +08:00
fix: 修改组件名称大写的问题
This commit is contained in:
parent
5694f61e4d
commit
5b5f59da91
@ -43,7 +43,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ContentBox } from '../ContentBox/index'
|
import { ContentBox } from '../contentBox/index'
|
||||||
import { OptionContent } from './components/OptionContent'
|
import { OptionContent } from './components/OptionContent'
|
||||||
import {
|
import {
|
||||||
getCharts,
|
getCharts,
|
||||||
|
@ -95,7 +95,7 @@ const {
|
|||||||
LeafIcon
|
LeafIcon
|
||||||
} = icon.ionicons5
|
} = icon.ionicons5
|
||||||
|
|
||||||
const ContentEdit = loadAsyncComponent(() => import('../ContentEdit/index.vue'))
|
const ContentEdit = loadAsyncComponent(() => import('../contentEdit/index.vue'))
|
||||||
const CanvasPage = loadAsyncComponent(() =>
|
const CanvasPage = loadAsyncComponent(() =>
|
||||||
import('./components/CanvasPage/index.vue')
|
import('./components/CanvasPage/index.vue')
|
||||||
)
|
)
|
||||||
|
@ -46,7 +46,7 @@
|
|||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { ref, onMounted, computed } from 'vue'
|
import { ref, onMounted, computed } from 'vue'
|
||||||
import { ContentBox } from '../ContentBox/index'
|
import { ContentBox } from '../contentBox/index'
|
||||||
import { EditRange } from './components/EditRange'
|
import { EditRange } from './components/EditRange'
|
||||||
import { EditBottom } from './components/EditBottom'
|
import { EditBottom } from './components/EditBottom'
|
||||||
import { EditShapeBox } from './components/EditShapeBox/index'
|
import { EditShapeBox } from './components/EditShapeBox/index'
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { computed } from 'vue'
|
import { computed } from 'vue'
|
||||||
import { ContentBox } from '../ContentBox/index'
|
import { ContentBox } from '../contentBox/index'
|
||||||
import { useChartLayoutStore } from '@/store/modules/chartLayoutStore/chartLayoutStore'
|
import { useChartLayoutStore } from '@/store/modules/chartLayoutStore/chartLayoutStore'
|
||||||
import { ChartLayoutStoreEnum } from '@/store/modules/chartLayoutStore/chartLayoutStore.d'
|
import { ChartLayoutStoreEnum } from '@/store/modules/chartLayoutStore/chartLayoutStore.d'
|
||||||
import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore'
|
import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore'
|
||||||
|
@ -170,7 +170,7 @@ export const useContextMenu = (menuConfig?: {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
// todo 每次都重新计算的功能
|
// todo 每次右键都执行判断功能
|
||||||
// menuOptions: clearHideOption ? clearHideOption(menuOptions, hideOptionsList) : menuOptions,
|
// menuOptions: clearHideOption ? clearHideOption(menuOptions, hideOptionsList) : menuOptions,
|
||||||
menuOptions: menuOptions,
|
menuOptions: menuOptions,
|
||||||
handleContextMenu,
|
handleContextMenu,
|
||||||
|
@ -48,20 +48,20 @@ const chartEditStore = useChartEditStore()
|
|||||||
chartHistoryStoreStore.canvasInit(chartEditStore.getEditCanvas)
|
chartHistoryStoreStore.canvasInit(chartEditStore.getEditCanvas)
|
||||||
|
|
||||||
const HeaderLeftBtn = loadAsyncComponent(() =>
|
const HeaderLeftBtn = loadAsyncComponent(() =>
|
||||||
import('./HeaderLeftBtn/index.vue')
|
import('./headerLeftBtn/index.vue')
|
||||||
)
|
)
|
||||||
const HeaderRightBtn = loadAsyncComponent(() =>
|
const HeaderRightBtn = loadAsyncComponent(() =>
|
||||||
import('./HeaderRightBtn/index.vue')
|
import('./headerRightBtn/index.vue')
|
||||||
)
|
)
|
||||||
const HeaderTitle = loadAsyncComponent(() => import('./HeaderTitle/index.vue'))
|
const HeaderTitle = loadAsyncComponent(() => import('./headerTitle/index.vue'))
|
||||||
const ContentLayers = loadAsyncComponent(() =>
|
const ContentLayers = loadAsyncComponent(() =>
|
||||||
import('./ContentLayers/index.vue')
|
import('./contentLayers/index.vue')
|
||||||
)
|
)
|
||||||
const ContentCharts = loadAsyncComponent(() =>
|
const ContentCharts = loadAsyncComponent(() =>
|
||||||
import('./ContentCharts/index.vue')
|
import('./contentCharts/index.vue')
|
||||||
)
|
)
|
||||||
const ContentConfigurations = loadAsyncComponent(() =>
|
const ContentConfigurations = loadAsyncComponent(() =>
|
||||||
import('./ContentConfigurations/index.vue')
|
import('./contentConfigurations/index.vue')
|
||||||
)
|
)
|
||||||
|
|
||||||
// 右键
|
// 右键
|
||||||
|
Loading…
x
Reference in New Issue
Block a user