no message

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-01-05 15:03:06 +07:00
parent 473757cdd1
commit b9f19f60d9

View file

@ -6,10 +6,11 @@ import { useQuasar } from "quasar";
/** import Components*/
import DialogHeader from "@/components/DialogHeader.vue";
/** import*/
/** import Store*/
import { useCounterMixin } from "@/stores/mixin";
import { useEvaluateStore } from "@/modules/06_evaluate/store";
/** use*/
const router = useRouter();
const $q = useQuasar();
const mixin = useCounterMixin();
@ -33,6 +34,7 @@ const props = defineProps({
const step = ref<number>(1);
/** function click ดำเนินการต่อ */
function onCklicNext() {
dialogConfirm(
$q,
@ -48,6 +50,7 @@ function onCklicNext() {
);
}
/** function Callblck ทำงานเมื่อ props มีการเปลี่ยนแปลง */
watch(props, () => {
step.value = 1;
});