Skip to content

Commit

Permalink
Table: fix dorender in created, fixed #121
Browse files Browse the repository at this point in the history
  • Loading branch information
QingWei-Li committed Sep 22, 2016
1 parent cded5df commit eb24d57
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,7 @@
## 更新日志

- 修复 Table 头部不同步的问题

### 1.0.0-rc.4

*2016-09-21*
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -10,7 +10,7 @@
"scripts": {
"build:file": "node bin/iconInit.js & node bin/build-entry.js",
"dev": "npm run bootstrap && npm run build:file && cooking watch -c scripts/cooking.demo.js -p",
"dist": "npm run lint && del -f lib && cooking build -c scripts/cooking.conf.js,scripts/cooking.common.js,scripts/cooking.component.js -p && npm run build:theme",
"dist": "npm run lint && npm run build:file && del -f lib && cooking build -c scripts/cooking.conf.js,scripts/cooking.common.js,scripts/cooking.component.js -p && npm run build:theme",
"dist:all": "node bin/build-all.js && npm run build:theme",
"build:theme": "gulp build --gulpfile packages/theme-default/gulpfile.js && cp-cli packages/theme-default/lib lib/theme-default",
"deploy": "npm run build:file && cooking build -c scripts/cooking.demo.js -p && echo element.eleme.io>>examples/element-ui/CNAME && gh-pages -d examples/element-ui --remote eleme && del examples/element-ui",
Expand Down
2 changes: 1 addition & 1 deletion packages/table/src/table.vue
Expand Up @@ -408,7 +408,7 @@
this.styleNode = styleNode;
this.$nextTick(_ => this.doRender());
this.doRender();
this.$ready = true;
if (this.tableData) {
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Expand Up @@ -126,7 +126,7 @@ if (typeof window !== 'undefined' && window.Vue) {
};

module.exports = {
version: '1.0.0-rc.3',
version: '1.0.0-rc.4',
install,
SelectDropdown,
Pagination,
Expand Down

0 comments on commit eb24d57

Please sign in to comment.