diff --git a/src/components/GoVChart/register.ts b/src/components/GoVChart/register.ts index cc7ba196..62dc86da 100644 --- a/src/components/GoVChart/register.ts +++ b/src/components/GoVChart/register.ts @@ -2,6 +2,7 @@ import { VChart } from '@visactor/vchart/esm/core'; import { registerBarChart, registerAreaChart, registerLineChart, registerPieChart, registerFunnelChart, registerWordCloudChart, registerScatterChart } from '@visactor/vchart/esm/chart'; import { registerTooltip, registerCartesianCrossHair, registerDiscreteLegend, registerLabel } from '@visactor/vchart/esm/component'; import { registerDomTooltipHandler } from '@visactor/vchart/esm/plugin/components'; +import { registerAnimate } from '@visactor/vchart'; export const registerChartsAndComponents = () => { VChart.useRegisters([ @@ -19,7 +20,10 @@ export const registerChartsAndComponents = () => { registerDomTooltipHandler, registerCartesianCrossHair, registerDiscreteLegend, - registerLabel + registerLabel, + + // 动画 + registerAnimate ]); } diff --git a/src/i18n/en/project.ts b/src/i18n/en/project.ts index 6695cd5e..9c7f0a27 100644 --- a/src/i18n/en/project.ts +++ b/src/i18n/en/project.ts @@ -5,7 +5,7 @@ export default { my: 'My', new_project: 'New Project', all_project: 'All Project', - my_templete: 'My Templete', + my_template: 'My Template', template_market: 'Template Market', // items diff --git a/src/i18n/zh/project.ts b/src/i18n/zh/project.ts index 49e86567..4e27c7e3 100644 --- a/src/i18n/zh/project.ts +++ b/src/i18n/zh/project.ts @@ -6,7 +6,7 @@ export default { my: '我的', new_project: '新项目', all_project: '全部项目', - my_templete: '我的模板', + my_template: '我的模板', template_market: '模板市场', // items diff --git a/src/packages/components/Tables/Tables/TableList/index.vue b/src/packages/components/Tables/Tables/TableList/index.vue index 24324ec6..12dad709 100644 --- a/src/packages/components/Tables/Tables/TableList/index.vue +++ b/src/packages/components/Tables/Tables/TableList/index.vue @@ -10,7 +10,11 @@