-
Notifications
You must be signed in to change notification settings - Fork 1
/
DOCS en-US35.0cb71eee40c7d7b6716e.js
1002 lines (869 loc) · 48.6 KB
/
DOCS en-US35.0cb71eee40c7d7b6716e.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([[30],{
/***/ 788:
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
// ESM COMPAT FLAG
__webpack_require__.r(__webpack_exports__);
// EXTERNAL MODULE: ./node_modules/vue/dist/vue.esm-browser.prod.js
var vue_esm_browser_prod = __webpack_require__(0);
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/dist/templateLoader.js??ref--6!./node_modules/vue-loader/dist??ref--3-0!./website/md-loader!./website/docs/en-US/layout.md?vue&type=template&id=22e89e12
const layoutvue_type_template_id_22e89e12_hoisted_1 = {
class: "content element-doc"
};
const layoutvue_type_template_id_22e89e12_hoisted_2 = /*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])("Layout ");
const layoutvue_type_template_id_22e89e12_hoisted_3 = /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("p", null, "Quickly and easily create layouts with the basic 24-column.", -1);
const layoutvue_type_template_id_22e89e12_hoisted_4 = /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("div", {
class: "tip"
}, [/*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("p", null, [/*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])("The component uses flex layout by default, no need to set "), /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("code", null, "type=\"flex\""), /*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])(" manually.")]), /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("p", null, [/*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])("Please note that the parent container should avoid using "), /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("code", null, "inline"), /*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])(" related styles, which will cause the component to not fill up its width.")])], -1);
const layoutvue_type_template_id_22e89e12_hoisted_5 = /*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])("Basic layout ");
const layoutvue_type_template_id_22e89e12_hoisted_6 = /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("p", null, "Create basic grid layout using columns.", -1);
const layoutvue_type_template_id_22e89e12_hoisted_7 = /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("div", null, [/*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("p", null, [/*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])("With "), /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("code", null, "row"), /*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])(" and "), /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("code", null, "col"), /*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])(", we can easily manipulate the layout using the "), /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("code", null, "span"), /*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])(" attribute.")])], -1);
const layoutvue_type_template_id_22e89e12_hoisted_8 = /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("pre", null, [/*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("code", {
class: "html"
}, "<el-row>\n <el-col :span=\"24\"><div class=\"grid-content bg-purple-dark\"></div></el-col>\n</el-row>\n<el-row>\n <el-col :span=\"12\"><div class=\"grid-content bg-purple\"></div></el-col>\n <el-col :span=\"12\"><div class=\"grid-content bg-purple-light\"></div></el-col>\n</el-row>\n<el-row>\n <el-col :span=\"8\"><div class=\"grid-content bg-purple\"></div></el-col>\n <el-col :span=\"8\"><div class=\"grid-content bg-purple-light\"></div></el-col>\n <el-col :span=\"8\"><div class=\"grid-content bg-purple\"></div></el-col>\n</el-row>\n<el-row>\n <el-col :span=\"6\"><div class=\"grid-content bg-purple\"></div></el-col>\n <el-col :span=\"6\"><div class=\"grid-content bg-purple-light\"></div></el-col>\n <el-col :span=\"6\"><div class=\"grid-content bg-purple\"></div></el-col>\n <el-col :span=\"6\"><div class=\"grid-content bg-purple-light\"></div></el-col>\n</el-row>\n<el-row>\n <el-col :span=\"4\"><div class=\"grid-content bg-purple\"></div></el-col>\n <el-col :span=\"4\"><div class=\"grid-content bg-purple-light\"></div></el-col>\n <el-col :span=\"4\"><div class=\"grid-content bg-purple\"></div></el-col>\n <el-col :span=\"4\"><div class=\"grid-content bg-purple-light\"></div></el-col>\n <el-col :span=\"4\"><div class=\"grid-content bg-purple\"></div></el-col>\n <el-col :span=\"4\"><div class=\"grid-content bg-purple-light\"></div></el-col>\n</el-row>\n\n<style>\n .el-row {\n margin-bottom: 20px;\n &:last-child {\n margin-bottom: 0;\n }\n }\n .el-col {\n border-radius: 4px;\n }\n .bg-purple-dark {\n background: #99a9bf;\n }\n .bg-purple {\n background: #d3dce6;\n }\n .bg-purple-light {\n background: #e5e9f2;\n }\n .grid-content {\n border-radius: 4px;\n min-height: 36px;\n }\n .row-bg {\n padding: 10px 0;\n background-color: #f9fafc;\n }\n</style>\n")], -1);
const layoutvue_type_template_id_22e89e12_hoisted_9 = /*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])("Column spacing ");
const layoutvue_type_template_id_22e89e12_hoisted_10 = /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("p", null, "Column spacing is supported.", -1);
const layoutvue_type_template_id_22e89e12_hoisted_11 = /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("div", null, [/*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("p", null, [/*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])("Row provides "), /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("code", null, "gutter"), /*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])(" attribute to specify spacings between columns, and its default value is 0.")])], -1);
const layoutvue_type_template_id_22e89e12_hoisted_12 = /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("pre", null, [/*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("code", {
class: "html"
}, "<el-row :gutter=\"20\">\n <el-col :span=\"6\"><div class=\"grid-content bg-purple\"></div></el-col>\n <el-col :span=\"6\"><div class=\"grid-content bg-purple\"></div></el-col>\n <el-col :span=\"6\"><div class=\"grid-content bg-purple\"></div></el-col>\n <el-col :span=\"6\"><div class=\"grid-content bg-purple\"></div></el-col>\n</el-row>\n\n<style>\n .el-row {\n margin-bottom: 20px;\n &:last-child {\n margin-bottom: 0;\n }\n }\n .el-col {\n border-radius: 4px;\n }\n .bg-purple-dark {\n background: #99a9bf;\n }\n .bg-purple {\n background: #d3dce6;\n }\n .bg-purple-light {\n background: #e5e9f2;\n }\n .grid-content {\n border-radius: 4px;\n min-height: 36px;\n }\n .row-bg {\n padding: 10px 0;\n background-color: #f9fafc;\n }\n</style>\n")], -1);
const layoutvue_type_template_id_22e89e12_hoisted_13 = /*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])("Hybrid layout ");
const layoutvue_type_template_id_22e89e12_hoisted_14 = /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("p", null, "Form a more complex hybrid layout by combining the basic 1/24 columns.", -1);
const layoutvue_type_template_id_22e89e12_hoisted_15 = /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("pre", null, [/*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("code", {
class: "html"
}, "<el-row :gutter=\"20\">\n <el-col :span=\"16\"><div class=\"grid-content bg-purple\"></div></el-col>\n <el-col :span=\"8\"><div class=\"grid-content bg-purple\"></div></el-col>\n</el-row>\n<el-row :gutter=\"20\">\n <el-col :span=\"8\"><div class=\"grid-content bg-purple\"></div></el-col>\n <el-col :span=\"8\"><div class=\"grid-content bg-purple\"></div></el-col>\n <el-col :span=\"4\"><div class=\"grid-content bg-purple\"></div></el-col>\n <el-col :span=\"4\"><div class=\"grid-content bg-purple\"></div></el-col>\n</el-row>\n<el-row :gutter=\"20\">\n <el-col :span=\"4\"><div class=\"grid-content bg-purple\"></div></el-col>\n <el-col :span=\"16\"><div class=\"grid-content bg-purple\"></div></el-col>\n <el-col :span=\"4\"><div class=\"grid-content bg-purple\"></div></el-col>\n</el-row>\n\n<style>\n .el-row {\n margin-bottom: 20px;\n &:last-child {\n margin-bottom: 0;\n }\n }\n .el-col {\n border-radius: 4px;\n }\n .bg-purple-dark {\n background: #99a9bf;\n }\n .bg-purple {\n background: #d3dce6;\n }\n .bg-purple-light {\n background: #e5e9f2;\n }\n .grid-content {\n border-radius: 4px;\n min-height: 36px;\n }\n .row-bg {\n padding: 10px 0;\n background-color: #f9fafc;\n }\n</style>\n")], -1);
const layoutvue_type_template_id_22e89e12_hoisted_16 = /*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])("Column offset ");
const _hoisted_17 = /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("p", null, "You can specify column offsets.", -1);
const _hoisted_18 = /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("div", null, [/*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("p", null, [/*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])("You can specify the number of column offset by setting the value of "), /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("code", null, "offset"), /*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])(" attribute of Col.")])], -1);
const _hoisted_19 = /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("pre", null, [/*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("code", {
class: "html"
}, "<el-row :gutter=\"20\">\n <el-col :span=\"6\"><div class=\"grid-content bg-purple\"></div></el-col>\n <el-col :span=\"6\" :offset=\"6\"\n ><div class=\"grid-content bg-purple\"></div\n ></el-col>\n</el-row>\n<el-row :gutter=\"20\">\n <el-col :span=\"6\" :offset=\"6\"\n ><div class=\"grid-content bg-purple\"></div\n ></el-col>\n <el-col :span=\"6\" :offset=\"6\"\n ><div class=\"grid-content bg-purple\"></div\n ></el-col>\n</el-row>\n<el-row :gutter=\"20\">\n <el-col :span=\"12\" :offset=\"6\"\n ><div class=\"grid-content bg-purple\"></div\n ></el-col>\n</el-row>\n\n<style>\n .el-row {\n margin-bottom: 20px;\n &:last-child {\n margin-bottom: 0;\n }\n }\n .el-col {\n border-radius: 4px;\n }\n .bg-purple-dark {\n background: #99a9bf;\n }\n .bg-purple {\n background: #d3dce6;\n }\n .bg-purple-light {\n background: #e5e9f2;\n }\n .grid-content {\n border-radius: 4px;\n min-height: 36px;\n }\n .row-bg {\n padding: 10px 0;\n background-color: #f9fafc;\n }\n</style>\n")], -1);
const _hoisted_20 = /*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])("Alignment ");
const _hoisted_21 = /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("p", null, "Default use the flex layout to make flexible alignment of columns.", -1);
const _hoisted_22 = /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("div", null, [/*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("p", null, [/*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])("You can define the layout of child elements by setting "), /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("code", null, "justify"), /*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])(" attribute with start, center, end, space-between or space-around.")])], -1);
const _hoisted_23 = /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("pre", null, [/*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("code", {
class: "html"
}, "<el-row class=\"row-bg\">\n <el-col :span=\"6\"><div class=\"grid-content bg-purple\"></div></el-col>\n <el-col :span=\"6\"><div class=\"grid-content bg-purple-light\"></div></el-col>\n <el-col :span=\"6\"><div class=\"grid-content bg-purple\"></div></el-col>\n</el-row>\n<el-row class=\"row-bg\" justify=\"center\">\n <el-col :span=\"6\"><div class=\"grid-content bg-purple\"></div></el-col>\n <el-col :span=\"6\"><div class=\"grid-content bg-purple-light\"></div></el-col>\n <el-col :span=\"6\"><div class=\"grid-content bg-purple\"></div></el-col>\n</el-row>\n<el-row class=\"row-bg\" justify=\"end\">\n <el-col :span=\"6\"><div class=\"grid-content bg-purple\"></div></el-col>\n <el-col :span=\"6\"><div class=\"grid-content bg-purple-light\"></div></el-col>\n <el-col :span=\"6\"><div class=\"grid-content bg-purple\"></div></el-col>\n</el-row>\n<el-row class=\"row-bg\" justify=\"space-between\">\n <el-col :span=\"6\"><div class=\"grid-content bg-purple\"></div></el-col>\n <el-col :span=\"6\"><div class=\"grid-content bg-purple-light\"></div></el-col>\n <el-col :span=\"6\"><div class=\"grid-content bg-purple\"></div></el-col>\n</el-row>\n<el-row class=\"row-bg\" justify=\"space-around\">\n <el-col :span=\"6\"><div class=\"grid-content bg-purple\"></div></el-col>\n <el-col :span=\"6\"><div class=\"grid-content bg-purple-light\"></div></el-col>\n <el-col :span=\"6\"><div class=\"grid-content bg-purple\"></div></el-col>\n</el-row>\n\n<style>\n .el-row {\n margin-bottom: 20px;\n &:last-child {\n margin-bottom: 0;\n }\n }\n .el-col {\n border-radius: 4px;\n }\n .bg-purple-dark {\n background: #99a9bf;\n }\n .bg-purple {\n background: #d3dce6;\n }\n .bg-purple-light {\n background: #e5e9f2;\n }\n .grid-content {\n border-radius: 4px;\n min-height: 36px;\n }\n .row-bg {\n padding: 10px 0;\n background-color: #f9fafc;\n }\n</style>\n")], -1);
const _hoisted_24 = /*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])("Responsive Layout ");
const _hoisted_25 = /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("p", null, "Taking example by Bootstrap's responsive design, five breakpoints are preset: xs, sm, md, lg and xl.", -1);
const _hoisted_26 = /*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("pre", null, [/*#__PURE__*/Object(vue_esm_browser_prod["createElementVNode"])("code", {
class: "html"
}, "<el-row :gutter=\"10\">\n <el-col :xs=\"8\" :sm=\"6\" :md=\"4\" :lg=\"3\" :xl=\"1\"\n ><div class=\"grid-content bg-purple\"></div\n ></el-col>\n <el-col :xs=\"4\" :sm=\"6\" :md=\"8\" :lg=\"9\" :xl=\"11\"\n ><div class=\"grid-content bg-purple-light\"></div\n ></el-col>\n <el-col :xs=\"4\" :sm=\"6\" :md=\"8\" :lg=\"9\" :xl=\"11\"\n ><div class=\"grid-content bg-purple\"></div\n ></el-col>\n <el-col :xs=\"8\" :sm=\"6\" :md=\"4\" :lg=\"3\" :xl=\"1\"\n ><div class=\"grid-content bg-purple-light\"></div\n ></el-col>\n</el-row>\n\n<style>\n .el-col {\n border-radius: 4px;\n }\n .bg-purple-dark {\n background: #99a9bf;\n }\n .bg-purple {\n background: #d3dce6;\n }\n .bg-purple-light {\n background: #e5e9f2;\n }\n .grid-content {\n border-radius: 4px;\n min-height: 36px;\n }\n</style>\n")], -1);
const _hoisted_27 = /*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])("Utility classes for hiding elements ");
const _hoisted_28 = /*#__PURE__*/Object(vue_esm_browser_prod["createStaticVNode"])("<p>Additionally, Element Plus provides a series of classes for hiding elements under certain conditions. These classes can be added to any DOM elements or custom components. You need to import the following CSS file to use these classes:</p><pre class=\"example-code\"><code class=\"hljs language-js\"><span class=\"hljs-keyword\">import</span> <span class=\"hljs-string\">'element-plus/lib/theme-chalk/display.css'</span>\n</code><span class=\"lang-mark\">js</span></pre><p>The classes are:</p><ul><li><code>hidden-xs-only</code> - hide when on extra small viewports only</li><li><code>hidden-sm-only</code> - hide when on small viewports and down</li><li><code>hidden-sm-and-down</code> - hide when on small viewports and down</li><li><code>hidden-sm-and-up</code> - hide when on small viewports and up</li><li><code>hidden-md-only</code> - hide when on medium viewports only</li><li><code>hidden-md-and-down</code> - hide when on medium viewports and down</li><li><code>hidden-md-and-up</code> - hide when on medium viewports and up</li><li><code>hidden-lg-only</code> - hide when on large viewports only</li><li><code>hidden-lg-and-down</code> - hide when on large viewports and down</li><li><code>hidden-lg-and-up</code> - hide when on large viewports and up</li><li><code>hidden-xl-only</code> - hide when on extra large viewports only</li></ul>", 4);
const _hoisted_32 = /*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])("Row Attributes ");
const _hoisted_33 = /*#__PURE__*/Object(vue_esm_browser_prod["createStaticVNode"])("<table><thead><tr><th>Attribute</th><th>Description</th><th>Type</th><th>Accepted Values</th><th>Default</th></tr></thead><tbody><tr><td>gutter</td><td>grid spacing</td><td>number</td><td>—</td><td>0</td></tr><tr><td>justify</td><td>horizontal alignment of flex layout</td><td>string</td><td>start/end/center/space-around/space-between</td><td>start</td></tr><tr><td>align</td><td>vertical alignment of flex layout</td><td>string</td><td>top/middle/bottom</td><td>top</td></tr><tr><td>tag</td><td>custom element tag</td><td>string</td><td>*</td><td>div</td></tr></tbody></table>", 1);
const _hoisted_34 = /*#__PURE__*/Object(vue_esm_browser_prod["createTextVNode"])("Col Attributes ");
const _hoisted_35 = /*#__PURE__*/Object(vue_esm_browser_prod["createStaticVNode"])("<table><thead><tr><th>Attribute</th><th>Description</th><th>Type</th><th>Accepted Values</th><th>Default</th></tr></thead><tbody><tr><td>span</td><td>number of column the grid spans</td><td>number</td><td>—</td><td>24</td></tr><tr><td>offset</td><td>number of spacing on the left side of the grid</td><td>number</td><td>—</td><td>0</td></tr><tr><td>push</td><td>number of columns that grid moves to the right</td><td>number</td><td>—</td><td>0</td></tr><tr><td>pull</td><td>number of columns that grid moves to the left</td><td>number</td><td>—</td><td>0</td></tr><tr><td>xs</td><td><code><768px</code> Responsive columns or column props object</td><td>number/object (e.g. {span: 4, offset: 4})</td><td>—</td><td>—</td></tr><tr><td>sm</td><td><code>≥768px</code> Responsive columns or column props object</td><td>number/object (e.g. {span: 4, offset: 4})</td><td>—</td><td>—</td></tr><tr><td>md</td><td><code>≥992px</code> Responsive columns or column props object</td><td>number/object (e.g. {span: 4, offset: 4})</td><td>—</td><td>—</td></tr><tr><td>lg</td><td><code>≥1200px</code> Responsive columns or column props object</td><td>number/object (e.g. {span: 4, offset: 4})</td><td>—</td><td>—</td></tr><tr><td>xl</td><td><code>≥1920px</code> Responsive columns or column props object</td><td>number/object (e.g. {span: 4, offset: 4})</td><td>—</td><td>—</td></tr><tr><td>tag</td><td>custom element tag</td><td>string</td><td>*</td><td>div</td></tr></tbody></table>", 1);
function layoutvue_type_template_id_22e89e12_render(_ctx, _cache, $props, $setup, $data, $options) {
const _component_app_link = Object(vue_esm_browser_prod["resolveComponent"])("app-link");
const _component_app_heading = Object(vue_esm_browser_prod["resolveComponent"])("app-heading");
const _component_element_demo0 = Object(vue_esm_browser_prod["resolveComponent"])("element-demo0");
const _component_demo_block = Object(vue_esm_browser_prod["resolveComponent"])("demo-block");
const _component_element_demo1 = Object(vue_esm_browser_prod["resolveComponent"])("element-demo1");
const _component_element_demo2 = Object(vue_esm_browser_prod["resolveComponent"])("element-demo2");
const _component_element_demo3 = Object(vue_esm_browser_prod["resolveComponent"])("element-demo3");
const _component_element_demo4 = Object(vue_esm_browser_prod["resolveComponent"])("element-demo4");
const _component_element_demo5 = Object(vue_esm_browser_prod["resolveComponent"])("element-demo5");
const _component_right_nav = Object(vue_esm_browser_prod["resolveComponent"])("right-nav");
return Object(vue_esm_browser_prod["openBlock"])(), Object(vue_esm_browser_prod["createElementBlock"])("section", layoutvue_type_template_id_22e89e12_hoisted_1, [Object(vue_esm_browser_prod["createVNode"])(_component_app_heading, {
id: "layout",
content: "Layout",
href: "#layout",
level: "2"
}, {
default: Object(vue_esm_browser_prod["withCtx"])(() => [layoutvue_type_template_id_22e89e12_hoisted_2, Object(vue_esm_browser_prod["createVNode"])(_component_app_link, {
class: "header-anchor",
href: "#layout"
})]),
_: 1
}), layoutvue_type_template_id_22e89e12_hoisted_3, layoutvue_type_template_id_22e89e12_hoisted_4, Object(vue_esm_browser_prod["createVNode"])(_component_app_heading, {
id: "basic-layout",
content: "Basic layout",
href: "#basic-layout",
level: "3"
}, {
default: Object(vue_esm_browser_prod["withCtx"])(() => [layoutvue_type_template_id_22e89e12_hoisted_5, Object(vue_esm_browser_prod["createVNode"])(_component_app_link, {
class: "header-anchor",
href: "#basic-layout"
})]),
_: 1
}), layoutvue_type_template_id_22e89e12_hoisted_6, Object(vue_esm_browser_prod["createVNode"])(_component_demo_block, null, {
source: Object(vue_esm_browser_prod["withCtx"])(() => [Object(vue_esm_browser_prod["createVNode"])(_component_element_demo0)]),
highlight: Object(vue_esm_browser_prod["withCtx"])(() => [layoutvue_type_template_id_22e89e12_hoisted_8]),
default: Object(vue_esm_browser_prod["withCtx"])(() => [layoutvue_type_template_id_22e89e12_hoisted_7]),
_: 1
}), Object(vue_esm_browser_prod["createVNode"])(_component_app_heading, {
id: "column-spacing",
content: "Column spacing",
href: "#column-spacing",
level: "3"
}, {
default: Object(vue_esm_browser_prod["withCtx"])(() => [layoutvue_type_template_id_22e89e12_hoisted_9, Object(vue_esm_browser_prod["createVNode"])(_component_app_link, {
class: "header-anchor",
href: "#column-spacing"
})]),
_: 1
}), layoutvue_type_template_id_22e89e12_hoisted_10, Object(vue_esm_browser_prod["createVNode"])(_component_demo_block, null, {
source: Object(vue_esm_browser_prod["withCtx"])(() => [Object(vue_esm_browser_prod["createVNode"])(_component_element_demo1)]),
highlight: Object(vue_esm_browser_prod["withCtx"])(() => [layoutvue_type_template_id_22e89e12_hoisted_12]),
default: Object(vue_esm_browser_prod["withCtx"])(() => [layoutvue_type_template_id_22e89e12_hoisted_11]),
_: 1
}), Object(vue_esm_browser_prod["createVNode"])(_component_app_heading, {
id: "hybrid-layout",
content: "Hybrid layout",
href: "#hybrid-layout",
level: "3"
}, {
default: Object(vue_esm_browser_prod["withCtx"])(() => [layoutvue_type_template_id_22e89e12_hoisted_13, Object(vue_esm_browser_prod["createVNode"])(_component_app_link, {
class: "header-anchor",
href: "#hybrid-layout"
})]),
_: 1
}), layoutvue_type_template_id_22e89e12_hoisted_14, Object(vue_esm_browser_prod["createVNode"])(_component_demo_block, null, {
source: Object(vue_esm_browser_prod["withCtx"])(() => [Object(vue_esm_browser_prod["createVNode"])(_component_element_demo2)]),
highlight: Object(vue_esm_browser_prod["withCtx"])(() => [layoutvue_type_template_id_22e89e12_hoisted_15]),
_: 1
}), Object(vue_esm_browser_prod["createVNode"])(_component_app_heading, {
id: "column-offset",
content: "Column offset",
href: "#column-offset",
level: "3"
}, {
default: Object(vue_esm_browser_prod["withCtx"])(() => [layoutvue_type_template_id_22e89e12_hoisted_16, Object(vue_esm_browser_prod["createVNode"])(_component_app_link, {
class: "header-anchor",
href: "#column-offset"
})]),
_: 1
}), _hoisted_17, Object(vue_esm_browser_prod["createVNode"])(_component_demo_block, null, {
source: Object(vue_esm_browser_prod["withCtx"])(() => [Object(vue_esm_browser_prod["createVNode"])(_component_element_demo3)]),
highlight: Object(vue_esm_browser_prod["withCtx"])(() => [_hoisted_19]),
default: Object(vue_esm_browser_prod["withCtx"])(() => [_hoisted_18]),
_: 1
}), Object(vue_esm_browser_prod["createVNode"])(_component_app_heading, {
id: "alignment",
content: "Alignment",
href: "#alignment",
level: "3"
}, {
default: Object(vue_esm_browser_prod["withCtx"])(() => [_hoisted_20, Object(vue_esm_browser_prod["createVNode"])(_component_app_link, {
class: "header-anchor",
href: "#alignment"
})]),
_: 1
}), _hoisted_21, Object(vue_esm_browser_prod["createVNode"])(_component_demo_block, null, {
source: Object(vue_esm_browser_prod["withCtx"])(() => [Object(vue_esm_browser_prod["createVNode"])(_component_element_demo4)]),
highlight: Object(vue_esm_browser_prod["withCtx"])(() => [_hoisted_23]),
default: Object(vue_esm_browser_prod["withCtx"])(() => [_hoisted_22]),
_: 1
}), Object(vue_esm_browser_prod["createVNode"])(_component_app_heading, {
id: "responsive-layout",
content: "Responsive Layout",
href: "#responsive-layout",
level: "3"
}, {
default: Object(vue_esm_browser_prod["withCtx"])(() => [_hoisted_24, Object(vue_esm_browser_prod["createVNode"])(_component_app_link, {
class: "header-anchor",
href: "#responsive-layout"
})]),
_: 1
}), _hoisted_25, Object(vue_esm_browser_prod["createVNode"])(_component_demo_block, null, {
source: Object(vue_esm_browser_prod["withCtx"])(() => [Object(vue_esm_browser_prod["createVNode"])(_component_element_demo5)]),
highlight: Object(vue_esm_browser_prod["withCtx"])(() => [_hoisted_26]),
_: 1
}), Object(vue_esm_browser_prod["createVNode"])(_component_app_heading, {
id: "utility-classes-for-hiding-elements",
content: "Utility classes for hiding elements",
href: "#utility-classes-for-hiding-elements",
level: "3"
}, {
default: Object(vue_esm_browser_prod["withCtx"])(() => [_hoisted_27, Object(vue_esm_browser_prod["createVNode"])(_component_app_link, {
class: "header-anchor",
href: "#utility-classes-for-hiding-elements"
})]),
_: 1
}), _hoisted_28, Object(vue_esm_browser_prod["createVNode"])(_component_app_heading, {
id: "row-attributes",
content: "Row Attributes",
href: "#row-attributes",
level: "3"
}, {
default: Object(vue_esm_browser_prod["withCtx"])(() => [_hoisted_32, Object(vue_esm_browser_prod["createVNode"])(_component_app_link, {
class: "header-anchor",
href: "#row-attributes"
})]),
_: 1
}), _hoisted_33, Object(vue_esm_browser_prod["createVNode"])(_component_app_heading, {
id: "col-attributes",
content: "Col Attributes",
href: "#col-attributes",
level: "3"
}, {
default: Object(vue_esm_browser_prod["withCtx"])(() => [_hoisted_34, Object(vue_esm_browser_prod["createVNode"])(_component_app_link, {
class: "header-anchor",
href: "#col-attributes"
})]),
_: 1
}), _hoisted_35, Object(vue_esm_browser_prod["createVNode"])(_component_right_nav)]);
}
// CONCATENATED MODULE: ./website/docs/en-US/layout.md?vue&type=template&id=22e89e12
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/dist??ref--3-0!./website/md-loader!./website/docs/en-US/layout.md?vue&type=script&lang=ts
/* harmony default export */ var layoutvue_type_script_lang_ts = ({
name: 'component-doc',
components: {
"element-demo0": function () {
const {
createElementVNode: _createElementVNode,
resolveComponent: _resolveComponent,
withCtx: _withCtx,
createVNode: _createVNode,
openBlock: _openBlock,
createElementBlock: _createElementBlock
} = vue_esm_browser_prod;
const _hoisted_1 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple-dark"
}, null, -1);
const _hoisted_2 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_3 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple-light"
}, null, -1);
const _hoisted_4 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_5 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple-light"
}, null, -1);
const _hoisted_6 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_7 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_8 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple-light"
}, null, -1);
const _hoisted_9 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_10 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple-light"
}, null, -1);
const _hoisted_11 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_12 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple-light"
}, null, -1);
const _hoisted_13 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_14 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple-light"
}, null, -1);
const _hoisted_15 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_16 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple-light"
}, null, -1);
function render(_ctx, _cache) {
const _component_el_col = _resolveComponent("el-col");
const _component_el_row = _resolveComponent("el-row");
return _openBlock(), _createElementBlock("div", null, [_createVNode(_component_el_row, null, {
default: _withCtx(() => [_createVNode(_component_el_col, {
span: 24
}, {
default: _withCtx(() => [_hoisted_1]),
_: 1
})]),
_: 1
}), _createVNode(_component_el_row, null, {
default: _withCtx(() => [_createVNode(_component_el_col, {
span: 12
}, {
default: _withCtx(() => [_hoisted_2]),
_: 1
}), _createVNode(_component_el_col, {
span: 12
}, {
default: _withCtx(() => [_hoisted_3]),
_: 1
})]),
_: 1
}), _createVNode(_component_el_row, null, {
default: _withCtx(() => [_createVNode(_component_el_col, {
span: 8
}, {
default: _withCtx(() => [_hoisted_4]),
_: 1
}), _createVNode(_component_el_col, {
span: 8
}, {
default: _withCtx(() => [_hoisted_5]),
_: 1
}), _createVNode(_component_el_col, {
span: 8
}, {
default: _withCtx(() => [_hoisted_6]),
_: 1
})]),
_: 1
}), _createVNode(_component_el_row, null, {
default: _withCtx(() => [_createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_7]),
_: 1
}), _createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_8]),
_: 1
}), _createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_9]),
_: 1
}), _createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_10]),
_: 1
})]),
_: 1
}), _createVNode(_component_el_row, null, {
default: _withCtx(() => [_createVNode(_component_el_col, {
span: 4
}, {
default: _withCtx(() => [_hoisted_11]),
_: 1
}), _createVNode(_component_el_col, {
span: 4
}, {
default: _withCtx(() => [_hoisted_12]),
_: 1
}), _createVNode(_component_el_col, {
span: 4
}, {
default: _withCtx(() => [_hoisted_13]),
_: 1
}), _createVNode(_component_el_col, {
span: 4
}, {
default: _withCtx(() => [_hoisted_14]),
_: 1
}), _createVNode(_component_el_col, {
span: 4
}, {
default: _withCtx(() => [_hoisted_15]),
_: 1
}), _createVNode(_component_el_col, {
span: 4
}, {
default: _withCtx(() => [_hoisted_16]),
_: 1
})]),
_: 1
})]);
}
const democomponentExport = {};
return {
render,
...democomponentExport
};
}(),
"element-demo1": function () {
const {
createElementVNode: _createElementVNode,
resolveComponent: _resolveComponent,
withCtx: _withCtx,
createVNode: _createVNode,
openBlock: _openBlock,
createElementBlock: _createElementBlock
} = vue_esm_browser_prod;
const _hoisted_1 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_2 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_3 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_4 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
function render(_ctx, _cache) {
const _component_el_col = _resolveComponent("el-col");
const _component_el_row = _resolveComponent("el-row");
return _openBlock(), _createElementBlock("div", null, [_createVNode(_component_el_row, {
gutter: 20
}, {
default: _withCtx(() => [_createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_1]),
_: 1
}), _createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_2]),
_: 1
}), _createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_3]),
_: 1
}), _createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_4]),
_: 1
})]),
_: 1
})]);
}
const democomponentExport = {};
return {
render,
...democomponentExport
};
}(),
"element-demo2": function () {
const {
createElementVNode: _createElementVNode,
resolveComponent: _resolveComponent,
withCtx: _withCtx,
createVNode: _createVNode,
openBlock: _openBlock,
createElementBlock: _createElementBlock
} = vue_esm_browser_prod;
const _hoisted_1 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_2 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_3 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_4 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_5 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_6 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_7 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_8 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_9 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
function render(_ctx, _cache) {
const _component_el_col = _resolveComponent("el-col");
const _component_el_row = _resolveComponent("el-row");
return _openBlock(), _createElementBlock("div", null, [_createVNode(_component_el_row, {
gutter: 20
}, {
default: _withCtx(() => [_createVNode(_component_el_col, {
span: 16
}, {
default: _withCtx(() => [_hoisted_1]),
_: 1
}), _createVNode(_component_el_col, {
span: 8
}, {
default: _withCtx(() => [_hoisted_2]),
_: 1
})]),
_: 1
}), _createVNode(_component_el_row, {
gutter: 20
}, {
default: _withCtx(() => [_createVNode(_component_el_col, {
span: 8
}, {
default: _withCtx(() => [_hoisted_3]),
_: 1
}), _createVNode(_component_el_col, {
span: 8
}, {
default: _withCtx(() => [_hoisted_4]),
_: 1
}), _createVNode(_component_el_col, {
span: 4
}, {
default: _withCtx(() => [_hoisted_5]),
_: 1
}), _createVNode(_component_el_col, {
span: 4
}, {
default: _withCtx(() => [_hoisted_6]),
_: 1
})]),
_: 1
}), _createVNode(_component_el_row, {
gutter: 20
}, {
default: _withCtx(() => [_createVNode(_component_el_col, {
span: 4
}, {
default: _withCtx(() => [_hoisted_7]),
_: 1
}), _createVNode(_component_el_col, {
span: 16
}, {
default: _withCtx(() => [_hoisted_8]),
_: 1
}), _createVNode(_component_el_col, {
span: 4
}, {
default: _withCtx(() => [_hoisted_9]),
_: 1
})]),
_: 1
})]);
}
const democomponentExport = {};
return {
render,
...democomponentExport
};
}(),
"element-demo3": function () {
const {
createElementVNode: _createElementVNode,
resolveComponent: _resolveComponent,
withCtx: _withCtx,
createVNode: _createVNode,
openBlock: _openBlock,
createElementBlock: _createElementBlock
} = vue_esm_browser_prod;
const _hoisted_1 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_2 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_3 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_4 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_5 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
function render(_ctx, _cache) {
const _component_el_col = _resolveComponent("el-col");
const _component_el_row = _resolveComponent("el-row");
return _openBlock(), _createElementBlock("div", null, [_createVNode(_component_el_row, {
gutter: 20
}, {
default: _withCtx(() => [_createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_1]),
_: 1
}), _createVNode(_component_el_col, {
span: 6,
offset: 6
}, {
default: _withCtx(() => [_hoisted_2]),
_: 1
})]),
_: 1
}), _createVNode(_component_el_row, {
gutter: 20
}, {
default: _withCtx(() => [_createVNode(_component_el_col, {
span: 6,
offset: 6
}, {
default: _withCtx(() => [_hoisted_3]),
_: 1
}), _createVNode(_component_el_col, {
span: 6,
offset: 6
}, {
default: _withCtx(() => [_hoisted_4]),
_: 1
})]),
_: 1
}), _createVNode(_component_el_row, {
gutter: 20
}, {
default: _withCtx(() => [_createVNode(_component_el_col, {
span: 12,
offset: 6
}, {
default: _withCtx(() => [_hoisted_5]),
_: 1
})]),
_: 1
})]);
}
const democomponentExport = {};
return {
render,
...democomponentExport
};
}(),
"element-demo4": function () {
const {
createElementVNode: _createElementVNode,
resolveComponent: _resolveComponent,
withCtx: _withCtx,
createVNode: _createVNode,
openBlock: _openBlock,
createElementBlock: _createElementBlock
} = vue_esm_browser_prod;
const _hoisted_1 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_2 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple-light"
}, null, -1);
const _hoisted_3 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_4 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_5 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple-light"
}, null, -1);
const _hoisted_6 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_7 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_8 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple-light"
}, null, -1);
const _hoisted_9 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_10 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_11 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple-light"
}, null, -1);
const _hoisted_12 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_13 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_14 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple-light"
}, null, -1);
const _hoisted_15 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
function render(_ctx, _cache) {
const _component_el_col = _resolveComponent("el-col");
const _component_el_row = _resolveComponent("el-row");
return _openBlock(), _createElementBlock("div", null, [_createVNode(_component_el_row, {
class: "row-bg"
}, {
default: _withCtx(() => [_createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_1]),
_: 1
}), _createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_2]),
_: 1
}), _createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_3]),
_: 1
})]),
_: 1
}), _createVNode(_component_el_row, {
class: "row-bg",
justify: "center"
}, {
default: _withCtx(() => [_createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_4]),
_: 1
}), _createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_5]),
_: 1
}), _createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_6]),
_: 1
})]),
_: 1
}), _createVNode(_component_el_row, {
class: "row-bg",
justify: "end"
}, {
default: _withCtx(() => [_createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_7]),
_: 1
}), _createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_8]),
_: 1
}), _createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_9]),
_: 1
})]),
_: 1
}), _createVNode(_component_el_row, {
class: "row-bg",
justify: "space-between"
}, {
default: _withCtx(() => [_createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_10]),
_: 1
}), _createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_11]),
_: 1
}), _createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_12]),
_: 1
})]),
_: 1
}), _createVNode(_component_el_row, {
class: "row-bg",
justify: "space-around"
}, {
default: _withCtx(() => [_createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_13]),
_: 1
}), _createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_14]),
_: 1
}), _createVNode(_component_el_col, {
span: 6
}, {
default: _withCtx(() => [_hoisted_15]),
_: 1
})]),
_: 1
})]);
}
const democomponentExport = {};
return {
render,
...democomponentExport
};
}(),
"element-demo5": function () {
const {
createElementVNode: _createElementVNode,
resolveComponent: _resolveComponent,
withCtx: _withCtx,
createVNode: _createVNode,
openBlock: _openBlock,
createElementBlock: _createElementBlock
} = vue_esm_browser_prod;
const _hoisted_1 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_2 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple-light"
}, null, -1);
const _hoisted_3 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple"
}, null, -1);
const _hoisted_4 = /*#__PURE__*/_createElementVNode("div", {
class: "grid-content bg-purple-light"
}, null, -1);
function render(_ctx, _cache) {
const _component_el_col = _resolveComponent("el-col");
const _component_el_row = _resolveComponent("el-row");
return _openBlock(), _createElementBlock("div", null, [_createVNode(_component_el_row, {
gutter: 10
}, {
default: _withCtx(() => [_createVNode(_component_el_col, {
xs: 8,
sm: 6,
md: 4,
lg: 3,
xl: 1
}, {
default: _withCtx(() => [_hoisted_1]),
_: 1
}), _createVNode(_component_el_col, {
xs: 4,
sm: 6,
md: 8,
lg: 9,
xl: 11
}, {
default: _withCtx(() => [_hoisted_2]),
_: 1
}), _createVNode(_component_el_col, {
xs: 4,
sm: 6,
md: 8,
lg: 9,
xl: 11
}, {
default: _withCtx(() => [_hoisted_3]),
_: 1
}), _createVNode(_component_el_col, {
xs: 8,
sm: 6,
md: 4,
lg: 3,
xl: 1
}, {
default: _withCtx(() => [_hoisted_4]),
_: 1
})]),
_: 1
})]);
}
const democomponentExport = {};
return {
render,
...democomponentExport
};
}()
}
});
// CONCATENATED MODULE: ./website/docs/en-US/layout.md?vue&type=script&lang=ts
// CONCATENATED MODULE: ./website/docs/en-US/layout.md
layoutvue_type_script_lang_ts.render = layoutvue_type_template_id_22e89e12_render
/* harmony default export */ var layout = __webpack_exports__["default"] = (layoutvue_type_script_lang_ts);
/***/ })