globalThis.Gudang = { content: `
`, action: function(){ setTimeout(function(){ document.getElementById('app-content-title').innerText = "Data Gudang"; table('gudang') .title('Gudang') .equals(['kode']) .createForm({ kode: { form: 'input', type: 'text', placeholder: 'Inputkan Kode', title: 'Kode' }, keterangan: { form: 'input', type: 'text', placeholder: 'Inputkan keterangan', title: 'Keterangan' } }) .row({ kode: 'Kode', keterangan: 'Ketarangan' }) .load() }) } }