1
0

feat(filter): add auto resize for filter query input

This commit is contained in:
kolaente
2023-12-15 19:01:08 +01:00
parent b978d344ca
commit c162a5a457
3 changed files with 25 additions and 10 deletions

View File

@ -77,7 +77,7 @@ const props = defineProps({
const emit = defineEmits(['taskAdded'])
const newTaskTitle = ref('')
const newTaskInput = useAutoHeightTextarea(newTaskTitle)
const {textarea: newTaskInput} = useAutoHeightTextarea(newTaskTitle)
const {t} = useI18n({useScope: 'global'})
const authStore = useAuthStore()