Svelt
Svelte is a modern JavaScript framework that shifts work to the build step, producing highly optimized, vanilla JavaScript code. It offers a reactive, component-based architecture with minimal runtime, leading to faster, smaller applications.
Coming Soon...
Listen for Events
Your application can subscribe to the Localess Visual Editor Events :
TypeScript
window.localess.on(['input', 'change'], (event) => {
if (event.type === 'input' || event.type === 'change') {
console.log(event.data);
//Update your content data ...
}
});