diff --git a/src/components/Table/src/hooks/useRender.ts b/src/components/Table/src/hooks/useRender.ts index eee214e3..bb52dabf 100644 --- a/src/components/Table/src/hooks/useRender.ts +++ b/src/components/Table/src/hooks/useRender.ts @@ -24,7 +24,7 @@ export const useRender = { */ renderLink: (url, text?) => { if (url) { - return h(Button, { type: 'link', href: text }, () => text || '') + return h(Button, { type: 'link', href: url, target: '_blank' }, () => text || '') } return '' },