New report system and views

This commit is contained in:
Simon Pocrnjič
2026-01-02 12:32:20 +01:00
parent 9fc5b54b8a
commit 703b52ff59
67 changed files with 8255 additions and 2794 deletions
@@ -55,6 +55,7 @@ const selectedItem = computed(() =>
function selectItem(selectedValue) {
const newValue = selectedValue === props.modelValue ? "" : selectedValue;
emit("update:modelValue", newValue);
console.log(selectedValue);
open.value = false;
}
</script>
@@ -83,7 +84,11 @@ function selectItem(selectedValue) {
v-for="item in items"
:key="item.value"
:value="item.value"
@select="selectItem"
@select="
(ev) => {
selectItem(ev.detail.value);
}
"
>
{{ item.label }}
<CheckIcon