Building a column data using a template, the result of the column is a normal string, however this column is not sortable or searchable.
Does the construction of this column need to be changed in any way? Other columns build this way are sortable.
Table Headers
headers: [
...
{ text: "IDs", value: "ids" },
...
]
Template
<template v-slot:item.ids="{ item }">
{{
Array.prototype.map
.call(item.ids, function (id) {
return id;
})
.join(", ")
}}
</template>