Added Columnrendering for Driver

This commit is contained in:
2025-02-27 09:28:00 +01:00
parent f3ce52d247
commit 58a9d72946
2 changed files with 19 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
<script setup>
const props = defineProps({
row: {
type: Object,
required: true,
default: {}
}
})
const profileStore = useProfileStore()
</script>
<template>
<span v-if="props.row.driver">{{props.row.driver.id ? profileStore.getProfileById(props.row.driver.id).fullName : profileStore.getProfileById(props.row.driver).fullName}}</span>
</template>