JSFiddle - React, Tailwind, and code Playground
HTML
<div id="test" activeItem="test"></div>
JavaScript
let test = document.getElementById('test')
Object.defineProperty(test.attributes, 'activeItem', {
set(newVal){
console.log(newVal) //pass the value to Vue here
this._activeItem = newVal
}, get(){
return this._activeItem
}
})
test.attributes.activeItem = 'awesome'
console.dir(test)