sajjad_talkhabi 3 years ago
parent 2307891fe3
commit f3f9344064

@ -89,7 +89,7 @@ export default {
rules: { rules: {
required: (value) => !!value || "Required.", required: (value) => !!value || "Required.",
min: (v) => v <= 7 || "The value of this field must be less than 7", min: (v) => v <= 7 || "The value of this field must be less than 7",
zero: (v) => v === 0 || "The value of this field not be 0", zero: (v) => v != 0 || "The value of this field not be 0",
}, },
}), }),
methods: { methods: {

@ -40,7 +40,7 @@
> >
</div> </div>
</div> </div>
<div> <!-- <div>
<RectangleButton <RectangleButton
size="large" size="large"
height="26" height="26"
@ -54,7 +54,7 @@
icon="WMi-pencil" icon="WMi-pencil"
class="custom-btn custom-icon ml-1" class="custom-btn custom-icon ml-1"
/> />
</div> </div> -->
</div> </div>
</div> </div>
</div> </div>
@ -86,9 +86,6 @@ export default {
}); });
}, },
}, },
created() {
console.log(this.seriesWorkout);
}
}; };
</script> </script>
<style scoped> <style scoped>

@ -199,7 +199,11 @@ export default {
}, },
}, },
async created() { async created() {
// this.SET_FILTER_WORKOUTS_TO_SERIES({
// });
await this.loadWorkoutsToSeries(); await this.loadWorkoutsToSeries();
console.log(this.getWorkoutsToSeries);
}, },
}; };
</script> </script>

Loading…
Cancel
Save