<template #status-data="{ row }">
<UBadge
v-if="row.status == Pending"
color="yellow"
:label="row.status"
/>
<UBadge
v-else-if="row.status == Completed"
color="green"
:label="row.status"
/>