Header for Product Data:
headers: [
{ text: "Product Name", value: "name" },
{ text: "Quantity", value: "quantity" },
{ text: "Price", value: "price" },
{ text: "Orders", value: "itemsSold" },
{ text: "Revenue", value: "revenue" },
{ text: "Status", value: "active" },
],
Template Setup for Items:
<template v-slot:item.name="{ item }">
{{ item.name }} {{ item.sku }}
</template>
If I want to search by item.sku which is not included in the headers, how can I modify my search functionality to include it?