fix slicing verification

This commit is contained in:
Hanan Askarim
2024-08-19 15:16:31 +07:00
parent 738068edc5
commit b3ad260791
5 changed files with 285 additions and 285 deletions

View File

@@ -3,6 +3,7 @@ const store = {
namespaced: true,
state() {
return {
date: new Date(),
patients: [
{
id: 1,
@@ -2078,6 +2079,9 @@ const store = {
};
},
mutations: {
setDate(state, data) {
state.date = data;
},
setPatients(state, data) {
state.patients = data
},