소스 검색

Table: support producer and style in column_options

master
Bing Sun 5 년 전
부모
커밋
bfa117bb94
로그인 계정: sunb GPG 키 ID: 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')
]),


불러오는 중...
취소
저장