Compare commits
No commits in common. "b56f1e9b3237266134048c4267fe69fa84632fb6" and "ade3cb83987ae9fdab3a1cd49efee313497629c2" have entirely different histories.
b56f1e9b32
...
ade3cb8398
|
|
@ -35,16 +35,16 @@ const props = defineProps({
|
||||||
const workflow = ref(null);
|
const workflow = ref(null);
|
||||||
const transitions = ref([]);
|
const transitions = ref([]);
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
setTimeout(()=>{init()}, 2000)
|
init();
|
||||||
// watch(
|
watch(
|
||||||
// () => props.ticket_,
|
() => props.ticket_,
|
||||||
// async (newVal) => {
|
async (newVal) => {
|
||||||
// if (newVal && Object.keys(newVal).length > 0) {
|
if (newVal && Object.keys(newVal).length > 0) {
|
||||||
// init();
|
init();
|
||||||
// }
|
}
|
||||||
// },
|
},
|
||||||
// { deep: true }
|
{ deep: true }
|
||||||
// )
|
)
|
||||||
})
|
})
|
||||||
|
|
||||||
const ticketId = ref(null);
|
const ticketId = ref(null);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue