Skip to content

Commit 04501de

Browse files
committed
docs: udpate
1 parent 5db345b commit 04501de

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

components/table/demo/edit-row.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Table with editable rows.
1212
<template>
1313
<a-table :columns="columns" :dataSource="data" bordered>
1414
<template v-for="col in ['name', 'age', 'address']" :slot="col" slot-scope="text, record, index">
15-
<div>
15+
<div :key="col">
1616
<a-input
1717
v-if="record.editable"
1818
style="margin: -5px 0"

components/tree-select/demo/treeData.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The tree structure can be populated using `treeData` property. This is a quick a
1919
v-model="value"
2020
>
2121
<span style="color: #08c" slot="title" slot-scope="{key, value}" v-if="key='0-0-1'">
22-
<a-icon type="home"/>Child Node1 {{value}}
22+
Child Node1 {{value}}
2323
</span>
2424
</a-tree-select>
2525
</template>

scripts/gulpfile.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ function copyHtml() {
113113
gulp.task('_site', done => {
114114
dist(() => {
115115
copyHtml();
116+
done();
116117
});
117118
});
118119
gulp.task('copy-html', () => {

site/components/CarbonAds.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const carbonUrls = {
66
'ant-design-vue.gitee.io':'//cdn.carbonads.com/carbon.js?serve=CK7DL2JN&placement=antdesignvuegiteeio',
77
'vue.ant.design': '//cdn.carbonads.com/carbon.js?serve=CK7DL2JW&placement=vueantdesign',
88
};
9-
const carbonUrl = carbonUrls[location.host] || '//cdn.carbonads.com/carbon.js?serve=CK7DL2JW&placement=vuecomponentgithubio';
9+
const carbonUrl = carbonUrls[location.host] || '//cdn.carbonads.com/carbon.js?serve=CK7DL2JW&placement=vueantdesign';
1010
export default {
1111
props: {
1212
isMobile: Boolean,

0 commit comments

Comments
 (0)