columns.js 429 B

12345678910111213141516171819202122
  1. import i18n from '@/locales'
  2. export const getZoneTypeTableColumns = () => {
  3. return {
  4. field: 'zone_type',
  5. title: i18n.t('network.text_717'),
  6. }
  7. }
  8. export const getVpcCountTableColumns = () => {
  9. return {
  10. field: 'vpc_count',
  11. title: i18n.t('network.text_719'),
  12. }
  13. }
  14. export const getDnsRecordsetCountTableColumns = () => {
  15. return {
  16. field: 'dns_record_count',
  17. title: i18n.t('network.text_718'),
  18. }
  19. }