Smart UI Components & Libraries – Grid, Scheduler, Gantt, Kanban for Angular, React, Next.js, Vue, Blazor, JavaScript › Forums › Editor & Inputs › What’s the Vue way to debounce input events in Editor? › Reply To: What’s the Vue way to debounce input events in Editor?
October 2, 2025 at 8:36 am
#113028
Keymaster
Hi,
yes, this is possible.
<smart-editor id="editor"></smart-editor>
<script>
window.onload = async () => {
const editor = document.getElementById('editor');
// Load remote content
const response = await fetch("https://example.com/article.html");
const html = await response.text();
// Set the HTML content inside the editor
editor.value = html;
};
</script>
Best regards,
Markov
Smart UI Team
https://www.htmlelements.com/