+
diff --git a/src/components/common/VnInputTime.vue b/src/components/common/VnInputTime.vue
index 689ef0af0..4bd75eeaf 100644
--- a/src/components/common/VnInputTime.vue
+++ b/src/components/common/VnInputTime.vue
@@ -2,7 +2,6 @@
import { computed, ref } from 'vue';
import { useI18n } from 'vue-i18n';
import isValidDate from 'filters/isValidDate';
-import VnInput from 'components/common/VnInput.vue';
const props = defineProps({
modelValue: {
@@ -20,7 +19,6 @@ const props = defineProps({
});
const { t } = useI18n();
const emit = defineEmits(['update:modelValue']);
-const focus = ref(false);
const value = computed({
get() {
@@ -68,23 +66,15 @@ const styleAttrs = computed(() => {
-
-
-
+
{
-