perf: 优化饼图展示

This commit is contained in:
奔跑的面条
2022-12-16 11:01:02 +08:00
parent 6aee7846d9
commit f62526c026
3 changed files with 34 additions and 23 deletions
@@ -1,2 +1,3 @@
export * from './axis'
export * from './line'
export * from './line'
export * from './label'
@@ -0,0 +1,7 @@
export const labelConfig = {
position: [
{ label: '外侧', value: 'outside' },
{ label: '内部', value: 'inside' },
{ label: '中心', value: 'center' }
]
}