Vue
Vue is a progressive JavaScript framework for building user interfaces and single-page applications (SPAs). It features a reactive data binding system and component-based architecture and is known for its simplicity and flexibility.
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 ...
}
});