test To Dev #665

Merged
jorgep merged 15 commits from testToDev into dev 2024-09-02 13:12:21 +00:00
1 changed files with 6 additions and 1 deletions
Showing only changes of commit 717c52fc02 - Show all commits

View File

@ -97,7 +97,12 @@ const title = ref();
:rules="validate('client.salesPersonFk')"
:use-like="false"
:emit-value="false"
@update:model-value="(val) => (title = val?.nickname)"
@update:model-value="
(val) => {
title = val?.nickname;
data.salesPersonFk = val?.id;
}
"
>
<template #prepend>
<VnAvatar