Переглянути джерело

Table: support producer and style in column_options

master
Bing Sun 5 роки тому
джерело
коміт
bfa117bb94
Підписано: sunb Ідентифікатор GPG ключа: F7795F8C590626AB
1 змінених файлів з 4 додано та 1 видалено
  1. +4
    -1
      src/components/Table.js

+ 4
- 1
src/components/Table.js Переглянути файл

@@ -105,7 +105,10 @@ export default initial_vnode => {
if (typeof column.tag != 'undefined')
v = m(column.tag, v)

return m(`td${column.class || ''}`, v)
if (typeof column.producer == 'function')
v = column.producer(v)

return m(`td${column.class || ''}`, {style: column.style || undefined}, v)
})
]))) : m('', 'Empty')
]),


Завантаження…
Відмінити
Зберегти