{
console.log(props)
console.log(selected)
}"
@open-popup="(props) => {
console.log(props)
console.log(selected)
}"
@update-table-value="(newValue, oldValue, row, col) => {
console.log(newValue, oldValue, row, col)
}"
/>
{
rows.push({
name: 'Albert',
age: 25,
birthday: '12/03/1998',
isAlive: true,
job: 'Data Analyst',
height: 1.68,
description: 'New Description'
})
}"
/>
{
rows.push({
name: 'Carlos',
age: 22,
birthday: '12/03/1998',
isAlive: true,
job: 'Programador',
height: 1.68,
description: 'New Description'
})
}"
/>
{
console.log(rowKey)
rowKey = ['job', 'age']
console.log(rowKey)
}"
/>
{
console.log(rowKey)
rowKey = 'name'
console.log(rowKey)
}"
/>