this.inputValue

This commit is contained in:
ThatOneCalculator 2022-08-08 17:00:13 -07:00
parent c1179b35ef
commit 2f539272c3

View File

@ -146,7 +146,6 @@ export default defineComponent({
caption: async () => { caption: async () => {
const img = document.getElementById('imgtocaption'); const img = document.getElementById('imgtocaption');
const textarea = document.getElementById("captioninput");
await worker.load(); await worker.load();
await worker.loadLanguage('eng'); await worker.loadLanguage('eng');
await worker.initialize('eng', OEM.LSTM_ONLY); await worker.initialize('eng', OEM.LSTM_ONLY);
@ -154,8 +153,9 @@ export default defineComponent({
tessedit_pageseg_mode: PSM.SINGLE_BLOCK, tessedit_pageseg_mode: PSM.SINGLE_BLOCK,
}); });
const { data: { text } } = await worker.recognize(img); const { data: { text } } = await worker.recognize(img);
const allowedLength = 512 - textarea.value.length; console.log(text);
textarea.value += text.slice(0, allowedLength); const allowedLength = 512 - this.inputValue.length;
this.inputValue += text.slice(0, allowedLength);
}, },
}, },
}); });