Co-authored-by: Jinwen Lai <lai.jinwen@vpclub.cn>
@ -22,7 +22,7 @@ export function useTable() {
const { t } = useI18n()
const columnsRef: TableColumns<any> = [
{ title: '#', key: 'index' },
{ title: '#', key: 'index', render: (row, index) => index + 1 },
{ title: t('home.number'), key: 'number' },
{ title: t('home.state'), key: 'state' }
]