enum LocationReportTypeEnums: string
{
case EMAIL = 'email';
case API = 'api';
case SFTP = 'sftp';
}
Now, I have a table with the datas (customers) and I try to use this enum in a class binding (customer.delivery come from the object in my v-for and I will check this data with the enum) :