refactor: refs #8409 deleted unused variable

This commit is contained in:
Jon Elias 2025-01-30 13:52:22 +01:00
parent 613ebc0eb4
commit ed211ba14b
1 changed files with 0 additions and 8 deletions

View File

@ -4,14 +4,6 @@ import VnSelect from 'components/common/VnSelect.vue';
const model = defineModel({ type: [String, Number, Object] });
const url = 'Suppliers';
const value = computed({
get() {
return model;
},
set(val) {
emit('update:modelValue', val);
},
});
</script>
<template>