Revert "Typo fix"

This reverts commit 16fdf8fb17.
This commit is contained in:
Tuğçe Küçükoğlu 2023-09-01 12:26:27 +03:00
parent b3f19c01e6
commit 63663f3a50
4 changed files with 20 additions and 10 deletions

View file

@ -8,15 +8,14 @@
<Column field="name" header="Name"></Column>
<Column field="category" header="Category"></Column>
<Column field="quantity" header="Quantity"></Column>
<template #empty>
<p>Empty DataTable</p>
</template>
</DataTable>
</div>
<DocSectionCode :code="code" :service="['ProductService']" />
</template>
<script>
import { ProductService } from '@/service/ProductService';
export default {
data() {
return {
@ -94,7 +93,7 @@ const products = ref();
};
},
mounted() {
// ProductService.getProductsMini().then((data) => (this.products = data));
ProductService.getProductsMini().then((data) => (this.products = data));
}
};
</script>