We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5695589 commit f7286a0Copy full SHA for f7286a0
src/ui/c-input-text/c-input-text.vue
@@ -96,9 +96,9 @@ function onPasteInputHtml(evt: ClipboardEvent) {
96
if (!target) {
97
return false;
98
}
99
- evt.preventDefault();
100
const textHtmlData = evt.clipboardData?.getData('text/html');
101
if (textHtmlData && textHtmlData !== '') {
+ evt.preventDefault();
102
value.value = textHtmlData;
103
return true;
104
@@ -161,8 +161,6 @@ onMounted(() => {
161
162
defineExpose({
163
inputWrapperRef,
164
- textareaRef,
165
- inputRef,
166
focus,
167
blur,
168
});
0 commit comments