Support publish component packages

This commit is contained in:
qingwei.li
2016-10-13 17:51:14 +08:00
committed by cinwell.li
parent 0f7158ab78
commit 0cc28fb16a
73 changed files with 307 additions and 976 deletions

10
packages/table/_index.js Normal file
View File

@@ -0,0 +1,10 @@
const ElTableColumn = require('./src/table-column');
const ElTable = require('./src/table');
module.exports = function(Vue) {
Vue.component(ElTable.name, ElTable);
Vue.component(ElTableColumn.name, ElTableColumn);
};
exports.ElTable = ElTable;
exports.ElTableColumn = ElTableColumn;