Compare commits

..

No commits in common. "71f4acea1ca8f7ddda6a6db7af99463de52bfacb" and "19ee008368b4f8c907f9d3ea29dab0a2afa8e229" have entirely different histories.

3 changed files with 8 additions and 8 deletions

View File

@ -47,7 +47,7 @@ export default [
},
{
title: 'Prodcuts',
title: 'Medicines',
icon: { icon: 'ri-medicine-bottle-line' },
to: 'admin-medicines',
},

View File

@ -74,10 +74,10 @@ const headers = [
title: 'Title',
key: 'title',
},
// {
// title: 'Slug',
// key: 'slug',
// },
{
title: 'Slug',
key: 'slug',
},
{
title: 'Price',
key: 'price',
@ -371,14 +371,14 @@ onMounted(() => {
<template>
<v-row>
<v-col cols="12" md="12" v-if="getmedicineList">
<VCard title="Products">
<VCard title="Medicines">
<VCardText >
<VRow>
<VCol cols="12" md="8" class="d-flex align-center">
<VBtn color="primary" prepend-icon="ri-add-line" @click="addDialog = true" style="display: none;">
New Product
New Medicine
</VBtn>
</VCol>
<VCol cols="12" md="4" class="d-flex justify-end">

View File

@ -109,7 +109,7 @@ export const routes = [
component: () => import('@/pages/labs/labs-kit.vue'),
},
{
path: '/admin/products',
path: '/admin/medicines',
name: 'admin-medicines',
component: () => import('@/pages/medicines/medicines.vue'),
},