Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Element
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
林焕东
Element
Commits
85495b61
Commit
85495b61
authored
Sep 22, 2016
by
baiyaaaaa
Committed by
GitHub
Sep 22, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #127 from QingWei-Li/fix/table/dorender
Table: fix dorender in created, fixed #121
parents
cded5dff
eb24d57a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
3 deletions
+5
-3
CHANGELOG.md
CHANGELOG.md
+2
-0
package.json
package.json
+1
-1
packages/table/src/table.vue
packages/table/src/table.vue
+1
-1
src/index.js
src/index.js
+1
-1
No files found.
CHANGELOG.md
View file @
85495b61
## 更新日志
-
修复 Table 头部不同步的问题
### 1.0.0-rc.4
*2016-09-21*
...
...
package.json
View file @
85495b61
...
...
@@ -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"
,
...
...
packages/table/src/table.vue
View file @
85495b61
...
...
@@ -408,7 +408,7 @@
this
.
styleNode
=
styleNode
;
this
.
$nextTick
(
_
=>
this
.
doRender
()
);
this
.
doRender
(
);
this
.
$ready
=
true
;
if
(
this
.
tableData
)
{
...
...
src/index.js
View file @
85495b61
...
...
@@ -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
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment