diff options
author | 2023-05-15 00:41:45 +0200 | |
---|---|---|
committer | 2023-05-15 01:31:22 +0200 | |
commit | f7fc779e6334af129e323ae6ec22d97059eb0363 (patch) | |
tree | 4435f7128b6aa7fcbf54f60bcce75c8f2eafe33e /src/ui/c-input-text/c-input-text.vue | |
parent | b3b6b7c46bfe8b6c11e3ca97a4e2741c7225b534 (diff) | |
download | it-tools-f7fc779e6334af129e323ae6ec22d97059eb0363.tar.gz it-tools-f7fc779e6334af129e323ae6ec22d97059eb0363.tar.zst it-tools-f7fc779e6334af129e323ae6ec22d97059eb0363.zip |
refactor(ui): replaced some n-input with c-input-text
Diffstat (limited to 'src/ui/c-input-text/c-input-text.vue')
-rw-r--r-- | src/ui/c-input-text/c-input-text.vue | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ui/c-input-text/c-input-text.vue b/src/ui/c-input-text/c-input-text.vue index 51c2805..d1dd3c6 100644 --- a/src/ui/c-input-text/c-input-text.vue +++ b/src/ui/c-input-text/c-input-text.vue @@ -133,6 +133,10 @@ const appTheme = useAppTheme(); const textareaRef = ref<HTMLTextAreaElement>(); const inputWrapperRef = ref<HTMLElement>(); +defineExpose({ + inputWrapperRef, +}); + watch( value, () => { |