JSFiddle - React, Tailwind, and code Playground

HTML

<button id="botao">Clique</button>

JavaScript

$('#botao').on('click', function () {
    $(this).data('teste', 'foo');
    console.log($(this).data('teste'), this.dataset.teste);
});