Atribut Pengguna untuk Elemet Kustom

get value() {
  return this.getAttribute('value');
}

set value(newValue) {
  this.setAttribute('value', newValue);
}
HimansaE