fix: 修改拖拽区域名称

This commit is contained in:
MTrun 2022-01-11 14:15:14 +08:00
parent e8057361d6
commit 67b613dabf
5 changed files with 6 additions and 6 deletions

View File

@ -11,7 +11,7 @@ const chartRoutes: RouteRecordRaw = {
name: ChartEnum.CHART_HOME_NAME, name: ChartEnum.CHART_HOME_NAME,
component: importPath['ChartEnum.CHART_HOME_NAME'], component: importPath['ChartEnum.CHART_HOME_NAME'],
meta: { meta: {
title: '图表', title: '工作空间',
isRoot: true isRoot: true
} }
} }

View File

@ -0,0 +1,3 @@
import ContentDrag from './index.vue'
export { ContentDrag }

View File

@ -1,3 +0,0 @@
import ContentDraw from './index.vue'
export { ContentDraw }

View File

@ -15,7 +15,7 @@
<n-layout-content content-style="overflow:hidden; display: flex"> <n-layout-content content-style="overflow:hidden; display: flex">
<ContentCharts /> <ContentCharts />
<ContentLayers /> <ContentLayers />
<ContentDraw /> <ContentDrag />
<ContentDetails /> <ContentDetails />
</n-layout-content> </n-layout-content>
</n-layout> </n-layout>
@ -29,7 +29,7 @@ import { HeaderRightBtn } from './components/HeaderRightBtn/index'
import { HeaderTitle } from './components/HeaderTitle/index' import { HeaderTitle } from './components/HeaderTitle/index'
import { ContentLayers } from './components/ContentLayers/index' import { ContentLayers } from './components/ContentLayers/index'
import { ContentCharts } from './components/ContentCharts/index' import { ContentCharts } from './components/ContentCharts/index'
import { ContentDraw } from './components/ContentDraw/index' import { ContentDrag } from './components/ContentDrag/index'
import { ContentDetails } from './components/ContentDetails/index' import { ContentDetails } from './components/ContentDetails/index'
</script> </script>