File tree 3 files changed +51
-3
lines changed
3 files changed +51
-3
lines changed Original file line number Diff line number Diff line change
1
+ <docs >
2
+ ---
3
+ order: 0
4
+ title:
5
+ en-US: Virtualized Table
6
+ zh-CN: 大数据渲染
7
+ ---
8
+
9
+ ## zh-CN
10
+
11
+ 该示例使用高级组件 [Surely Vue](https://www.surely.cool) 进行开发,Surely Vue 是 Ant Design Vue 旗下的高级组件,
12
+ 该组件致力于解决大数据渲染、图表集成等复杂高频问题。 使用该组件可以流畅滚动 10 万行、10 万列的数据,你不必担心页面卡顿造成用户投诉,进而影响业务进展。
13
+
14
+ ## en-US
15
+
16
+ This example uses advanced components [Surely Vue](https://www.surely.cool) for development.
17
+ This component is dedicated to solving complex high-frequency issues such as big data rendering and chart integration.
18
+ Using this component, you can smoothly scroll through 100,000 rows and 100,000 columns of data.
19
+ </docs >
20
+
21
+ <template >
22
+ <iframe src =" https://www.surely.cool/for-ant-demo" height =" 400" />
23
+ <div v-if =" false" >
24
+ you can visit
25
+ <a href =" https://www.surely.cool" />
26
+ get more info
27
+ </div >
28
+ </template >
Original file line number Diff line number Diff line change 27
27
<Stripe />
28
28
<Summary />
29
29
<TemplateCom />
30
+ <bigData />
30
31
</demo-sort >
31
32
</template >
32
33
@@ -59,6 +60,7 @@ import MultipleSorter from './multiple-sorter.vue';
59
60
import Summary from ' ./summary.vue' ;
60
61
import Sticky from ' ./sticky.vue' ;
61
62
import ResizableColumn from ' ./resizable-column.vue' ;
63
+ import bigData from ' ./big-data.vue' ;
62
64
import CN from ' ../index.zh-CN.md' ;
63
65
import US from ' ../index.en-US.md' ;
64
66
import { defineComponent } from ' @vue/runtime-core' ;
@@ -94,6 +96,7 @@ export default defineComponent({
94
96
Summary ,
95
97
Sticky ,
96
98
ResizableColumn ,
99
+ bigData ,
97
100
},
98
101
});
99
102
</script >
Original file line number Diff line number Diff line change 1
1
<template >
2
- <a-menu id =" nav" class =" menu-site" :mode =" menuMode" :selected-keys =" [activeMenuItem]" >
2
+ <a-menu
3
+ id =" nav"
4
+ class =" menu-site"
5
+ :mode =" menuMode"
6
+ :selected-keys =" [activeMenuItem]"
7
+ disabled-overflow
8
+ >
3
9
<a-menu-item key =" docs/vue" >
4
10
<router-link :to =" getLocalizedPathname('/docs/vue/introduce', isZhCN)" >
5
11
{{ $t('app.header.menu.documentation') }}
10
16
{{ $t('app.header.menu.components') }}
11
17
</router-link >
12
18
</a-menu-item >
19
+ <a-menu-item v-if =" isZhCN" key =" surely-vue" >
20
+ <a
21
+ href =" https://www.surely.cool"
22
+ target =" _blank"
23
+ rel =" noopener noreferrer"
24
+ style =" position : relative "
25
+ >
26
+ 高级组件
27
+ <a-badge color =" red" style =" position : absolute ; top : -35px ; right : -15px " />
28
+ </a >
29
+ </a-menu-item >
13
30
<a-menu-item key =" store" >
14
31
<a
15
32
href =" https://store.antdv.com/pro/"
18
35
style =" position : relative "
19
36
>
20
37
{{ $t('app.header.menu.store') }}
21
- <a-badge color =" red" style =" position : absolute ; top : -35px ; right : -15px " />
38
+ <!-- < a-badge color="red" style="position: absolute; top: -35px; right: -15px" /> -- >
22
39
</a >
23
40
</a-menu-item >
24
41
<a-menu-item v-if =" isZhCN" key =" geektime" >
29
46
style =" position : relative "
30
47
>
31
48
实战课程
32
- <a-badge color =" red" style =" position : absolute ; top : -35px ; right : -15px " />
49
+ <!-- < a-badge color="red" style="position: absolute; top: -35px; right: -15px" /> -- >
33
50
</a >
34
51
</a-menu-item >
35
52
<template v-if =" isMobile " >
You can’t perform that action at this time.
0 commit comments