diff --git a/src/components/ui/VnLv.vue b/src/components/ui/VnLv.vue index aa7342742f..4c5a429f48 100644 --- a/src/components/ui/VnLv.vue +++ b/src/components/ui/VnLv.vue @@ -6,6 +6,7 @@ import { computed } from 'vue'; const $props = defineProps({ label: { type: String, default: null }, + tooltip: { type: String, default: null }, value: { type: [String, Boolean, Number], default: null, @@ -40,7 +41,10 @@ const val = computed(() => $props.value);