diff --git a/src/components/table/cell.vue b/src/components/table/cell.vue index 7a8c188e..f005b1cb 100644 --- a/src/components/table/cell.vue +++ b/src/components/table/cell.vue @@ -57,7 +57,7 @@ let methods = {}; Object.keys($parent).forEach(key => { const func = $parent[key]; - if (typeof(func) === 'function' && func.name === 'boundFn') { + if (typeof(func) === 'function' && (func.name === 'boundFn' || func.name === 'n')) { methods[key] = func; } });