Explorar el Código

Table: fix typo

qingwei.li hace 9 años
padre
commit
6d247eef20
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      packages/table/src/table-column.js

+ 2 - 2
packages/table/src/table-column.js

@@ -169,10 +169,10 @@ export default {
 
     column.template = function(h, data) {
       if (_self.$vnode.data.inlineTemplate) {
-        let costomRender = _self.$options.render;
+        let customRender = _self.$options.render;
 
         renderColumn = function() {
-          return costomRender.call(objectAssign(_self, data));
+          return customRender.call(objectAssign(_self, data));
         };
       };