-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1100 lines (662 loc) · 30.9 KB
/
index.html
File metadata and controls
1100 lines (662 loc) · 30.9 KB
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
<!DOCTYPE html>
<html lang="zh-cn" itemscope itemtype="http://schema.org/WebPage">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Astar Blog</title>
<meta name="renderer" content="webkit" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes"/>
<meta name="MobileOptimized" content="width"/>
<meta name="HandheldFriendly" content="true"/>
<meta name="applicable-device" content="pc,mobile">
<meta name="theme-color" content="#f8f5ec" />
<meta name="msapplication-navbutton-color" content="#f8f5ec">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="#f8f5ec">
<meta name="mobile-web-app-capable" content="yes">
<meta name="author" content="Astar" />
<meta name="description" content="Hugo theme jane example site." />
<meta name="keywords" content="Hugo, blog, Astar" />
<meta name="generator" content="Hugo 0.82.0" />
<link rel="canonical" href="https://mmmaxingxing.github.io/" />
<link href="/index.xml" rel="alternate" type="application/rss+xml" title="Astar Blog" />
<link rel="icon" href="/favicon.ico" />
<link rel="stylesheet" href="/sass/jane.min.f7440b5c0d223f47a09bf5853465434e6f91d80a591c2f8d2d5e8220e5db0580.css" integrity="sha256-90QLXA0iP0egm/WFNGVDTm+R2ApZHC+NLV6CIOXbBYA=" media="screen" crossorigin="anonymous">
<link rel="stylesheet" href="/css/custom.css">
<meta property="og:title" content="Astar Blog" />
<meta property="og:description" content="Hugo theme jane example site." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://mmmaxingxing.github.io/" />
<meta itemprop="name" content="Astar Blog">
<meta itemprop="description" content="Hugo theme jane example site."><meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="Astar Blog"/>
<meta name="twitter:description" content="Hugo theme jane example site."/>
<!--[if lte IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/classlist/1.1.20170427/classList.min.js"></script>
<![endif]-->
<!--[if lt IE 9]>
<script src="https://cdn.jsdelivr.net/npm/html5shiv@3.7.3/dist/html5shiv.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/respond.js@1.4.2/dest/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="mobile-navbar" class="mobile-navbar">
<div class="mobile-header-logo">
<a href="/" class="logo">Astar</a>
</div>
<div class="mobile-navbar-icon">
<span></span>
<span></span>
<span></span>
</div>
</div>
<nav id="mobile-menu" class="mobile-menu slideout-menu">
<ul class="mobile-menu-list">
<li class="mobile-menu-item">
<a class="menu-item-link" href="https://mmmaxingxing.github.io/">首页</a>
</li><li class="mobile-menu-item">
<a class="menu-item-link" href="https://mmmaxingxing.github.io/post/">列表</a>
</li><li class="mobile-menu-item">
<a class="menu-item-link" href="https://mmmaxingxing.github.io/tags/">标签</a>
</li><li class="mobile-menu-item">
<a class="menu-item-link" href="https://mmmaxingxing.github.io/categories/">分类</a>
</li>
</ul>
</nav>
<link rel="stylesheet" href="/lib/photoswipe/photoswipe.min.css" />
<link rel="stylesheet" href="/lib/photoswipe/default-skin/default-skin.min.css" />
<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
<div class="pswp__bg"></div>
<div class="pswp__scroll-wrap">
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<div class="pswp__counter"></div>
<button class="pswp__button pswp__button--close" title="Close (Esc)"></button>
<button class="pswp__button pswp__button--share" title="Share"></button>
<button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
<button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div>
<button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
</button>
<button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
</button>
<div class="pswp__caption">
<div class="pswp__caption__center"></div>
</div>
</div>
</div>
</div>
<header id="header" class="header container">
<div class="logo-wrapper">
<a href="/" class="logo">
Astar
</a>
</div>
<nav class="site-navbar">
<ul id="menu" class="menu">
<li class="menu-item active">
<a class="menu-item-link" href="https://mmmaxingxing.github.io/">首页</a>
</li>
<li class="menu-item">
<a class="menu-item-link" href="https://mmmaxingxing.github.io/post/">列表</a>
</li>
<li class="menu-item">
<a class="menu-item-link" href="https://mmmaxingxing.github.io/tags/">标签</a>
</li>
<li class="menu-item">
<a class="menu-item-link" href="https://mmmaxingxing.github.io/categories/">分类</a>
</li>
</ul>
</nav>
</header>
<div id="mobile-panel">
<main id="main" class="main bg-llight">
<div class="content-wrapper">
<div id="content" class="content container">
<section id="posts" class="posts">
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/cours/tool/vscode/snippets/">VsCode创建自定义代码片段</a>
</h1>
<div class="post-meta">
<time datetime="2021-04-01" class="post-time">
2021-04-01
</time>
</div>
</header>
<div class="post-content">
<div class="post-summary">
Snippets vscode 提供的用户自定义代码提示设置 1 2 3 4 5 6 7 8 9 10 11 shift + ctrl + p ---> Snippets ---> 首选项配置用户代码片段 // 样式如下 "Print to console": { "prefix": "log", "body": [ "console.log('$1');", "$2" ], "description": "Log output to console" } 自定
</div>
<div class="read-more">
<a href="/post/cours/tool/vscode/snippets/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/cours/tool/capture/">抓包工具记录</a>
</h1>
<div class="post-meta">
<time datetime="2019-09-30" class="post-time">
2019-09-30
</time>
<div class="post-category">
<a href="https://mmmaxingxing.github.io/categories/%E5%B7%A5%E5%85%B7/"> 工具 </a>
</div>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<p>抓包工具整理</p>
</div>
<div class="read-more">
<a href="/post/cours/tool/capture/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/cours/front/flutter/operate/">操作小Tips</a>
</h1>
<div class="post-meta">
<time datetime="2019-09-30" class="post-time">
2019-09-30
</time>
<div class="post-category">
<a href="https://mmmaxingxing.github.io/categories/flutter/"> Flutter </a>
</div>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<p>写Flutter中遇见的一些操作记录。</p>
</div>
<div class="read-more">
<a href="/post/cours/front/flutter/operate/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/cours/front/flutter/base_use02/">Flutter-02-配置基础路由规则</a>
</h1>
<div class="post-meta">
<time datetime="2019-06-16" class="post-time">
2019-06-16
</time>
<div class="post-category">
<a href="https://mmmaxingxing.github.io/categories/flutter/"> Flutter </a>
</div>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<p>入坑进行时。。</p>
</div>
<div class="read-more">
<a href="/post/cours/front/flutter/base_use02/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/cours/front/flutter/dart01/">dart-01-基础dart语法整理</a>
</h1>
<div class="post-meta">
<time datetime="2019-06-14" class="post-time">
2019-06-14
</time>
<div class="post-category">
<a href="https://mmmaxingxing.github.io/categories/flutter/"> Flutter </a>
</div>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<p>入坑进行时。。</p>
</div>
<div class="read-more">
<a href="/post/cours/front/flutter/dart01/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/cours/front/flutter/base_use01/">Flutter-01-创建一个tabbar&&footerbar页面</a>
</h1>
<div class="post-meta">
<time datetime="2019-06-14" class="post-time">
2019-06-14
</time>
<div class="post-category">
<a href="https://mmmaxingxing.github.io/categories/flutter/"> Flutter </a>
</div>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<p>入坑进行时。。</p>
</div>
<div class="read-more">
<a href="/post/cours/front/flutter/base_use01/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/cours/front/flutter/flutter01/">flutter-01-基础flatter语法整理</a>
</h1>
<div class="post-meta">
<time datetime="2019-06-14" class="post-time">
2019-06-14
</time>
<div class="post-category">
<a href="https://mmmaxingxing.github.io/categories/flutter/"> Flutter </a>
</div>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<p>入坑进行时。。</p>
</div>
<div class="read-more">
<a href="/post/cours/front/flutter/flutter01/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/cours/front/flutter/package/">Flutter在使用或相关包整理</a>
</h1>
<div class="post-meta">
<time datetime="2019-06-14" class="post-time">
2019-06-14
</time>
<div class="post-category">
<a href="https://mmmaxingxing.github.io/categories/flutter/"> Flutter </a>
</div>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<p>入坑进行时。。</p>
</div>
<div class="read-more">
<a href="/post/cours/front/flutter/package/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/cours/front/vue/element-ui/environment/">ElementUI2.4.11 Upload 源码</a>
</h1>
<div class="post-meta">
<time datetime="2019-06-12" class="post-time">
2019-06-12
</time>
<div class="post-category">
<a href="https://mmmaxingxing.github.io/categories/vue/"> Vue </a>
</div>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<p>upload 源码 整理</p>
</div>
<div class="read-more">
<a href="/post/cours/front/vue/element-ui/environment/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/cours/front/dom/creat_a_click/">创建一个原生属性并且模拟触发事件</a>
</h1>
<div class="post-meta">
<time datetime="2019-06-11" class="post-time">
2019-06-11
</time>
<div class="post-category">
<a href="https://mmmaxingxing.github.io/categories/javascript/"> javascript </a>
</div>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<h3 id="创建一个a标签并触发其事件">创建一个a标签并触发其事件</h3>
<p>有个项目需求,需要下载一个文件时名称不乱码显示,前段解决方案,使用a标签新增download 字段,由于需要模拟a标签,以下以做记录。</p>
</div>
<div class="read-more">
<a href="/post/cours/front/dom/creat_a_click/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/cours/front/flutter/environment/">Flutter环境配置</a>
</h1>
<div class="post-meta">
<time datetime="2019-06-11" class="post-time">
2019-06-11
</time>
<div class="post-category">
<a href="https://mmmaxingxing.github.io/categories/flutter/"> Flutter </a>
</div>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<p>入坑进行时。。</p>
</div>
<div class="read-more">
<a href="/post/cours/front/flutter/environment/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/cours/front/vue/01-vue-soundcode-nextticket/">Vue nextTicket 源码分析</a>
</h1>
<div class="post-meta">
<time datetime="2019-05-07" class="post-time">
2019-05-07
</time>
<div class="post-category">
<a href="https://mmmaxingxing.github.io/categories/%E6%BA%90%E7%A0%81/"> 源码 </a>
</div>
</div>
</header>
<div class="post-content">
<div class="post-summary">
nextTicket源码构成 1、能力检测 2、延时调用 3、原理是利用js同步函数执行完毕后才会执行进入异步加载流的规则 全部源码 1 2 3 4 5 6 7 8
</div>
<div class="read-more">
<a href="/post/cours/front/vue/01-vue-soundcode-nextticket/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/cours/front/vue/01-vue-grammer-mixins/">Vue Mixins</a>
</h1>
<div class="post-meta">
<time datetime="2019-05-07" class="post-time">
2019-05-07
</time>
<div class="post-category">
<a href="https://mmmaxingxing.github.io/categories/vue/"> Vue </a>
</div>
</div>
</header>
<div class="post-content">
<div class="post-summary">
一、Mixins 把vue 的方法拉出来写了,相同的覆盖,不同的打包进去。
</div>
<div class="read-more">
<a href="/post/cours/front/vue/01-vue-grammer-mixins/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/cours/backends/golang/2019050601-golang-test/">Golang环境配置及相关参数说明</a>
</h1>
<div class="post-meta">
<time datetime="2019-05-06" class="post-time">
2019-05-06
</time>
<div class="post-category">
<a href="https://mmmaxingxing.github.io/categories/golang/"> GoLang </a>
</div>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<p>Golang环境配置</p>
</div>
<div class="read-more">
<a href="/post/cours/backends/golang/2019050601-golang-test/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
<article class="post bg-white">
<header class="post-header">
<h1 class="post-title">
<span class="post-pinned">
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
width="32" height="32">
<path d="M682.666667 512V170.666667h42.666666V85.333333H298.666667v85.333334h42.666666v341.333333l-85.333333 85.333333v85.333334h221.866667v256h68.266666v-256H768v-85.333334l-85.333333-85.333333z"></path>
</svg>
</span>
<a class="post-link" href="/post/reporter/exam/20190505-exam/">2019年五月 课程进度记录</a>
</h1>
<div class="post-meta">
<time datetime="2019-05-05" class="post-time">
2019-05-05
</time>
<div class="post-category">
<a href="https://mmmaxingxing.github.io/categories/md/"> MD </a>
</div>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<p>每日完成课程进度记录</p>
</div>
<div class="read-more">
<a href="/post/reporter/exam/20190505-exam/" class="read-more-link">阅读全文</a>
</div>
</div>
</article>
</section>
<nav class="pagination">
<ul>
<li class="active" >
<a href="/">1</a>
</li>
<li >
<a href="/page/2/">2</a>
</li>
<li >
<a href="/page/3/">3</a>
</li>
<li >
<a href="/page/4/">4</a>
</li>
</ul>
</nav>
</div>
</div>
</main>
<footer id="footer" class="footer">
<div class="icon-links">
<a href="mailto:1172406997@qq.com" rel="me noopener" class="iconfont"
title="email" >
<svg class="icon" viewBox="0 0 1451 1024" version="1.1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="36" height="36">
<path d="M664.781909 681.472759 0 97.881301C0 3.997201 71.046997 0 71.046997 0L474.477909 0 961.649408 0 1361.641813 0C1361.641813 0 1432.688811 3.997201 1432.688811 97.881301L771.345323 681.472759C771.345323 681.472759 764.482731 685.154773 753.594283 688.65053L753.594283 688.664858C741.602731 693.493018 729.424896 695.068979 718.077952 694.839748 706.731093 695.068979 694.553173 693.493018 682.561621 688.664858L682.561621 688.65053C671.644501 685.140446 664.781909 681.472759 664.781909 681.472759L664.781909 681.472759ZM718.063616 811.603883C693.779541 811.016482 658.879232 802.205449 619.10784 767.734955 542.989056 701.759633 0 212.052267 0 212.052267L0 942.809523C0 942.809523 0 1024 83.726336 1024L682.532949 1024 753.579947 1024 1348.948139 1024C1432.688811 1024 1432.688811 942.809523 1432.688811 942.809523L1432.688811 212.052267C1432.688811 212.052267 893.138176 701.759633 817.019477 767.734955 777.248 802.205449 742.347691 811.03081 718.063616 811.603883L718.063616 811.603883Z"></path>
</svg>
</a>
<a href="https://github.com/mmmaxingxing" rel="me noopener" class="iconfont"
title="github" target="_blank"
>
<svg class="icon" style="" viewBox="0 0 1024 1024" version="1.1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="36" height="36">
<path d="M512 12.672c-282.88 0-512 229.248-512 512 0 226.261333 146.688 418.133333 350.08 485.76 25.6 4.821333 34.986667-11.008 34.986667-24.618667 0-12.16-0.426667-44.373333-0.64-87.04-142.421333 30.890667-172.458667-68.693333-172.458667-68.693333C188.672 770.986667 155.008 755.2 155.008 755.2c-46.378667-31.744 3.584-31.104 3.584-31.104 51.413333 3.584 78.421333 52.736 78.421333 52.736 45.653333 78.293333 119.850667 55.68 149.12 42.581333 4.608-33.109333 17.792-55.68 32.426667-68.48-113.706667-12.8-233.216-56.832-233.216-253.013333 0-55.893333 19.84-101.546667 52.693333-137.386667-5.76-12.928-23.04-64.981333 4.48-135.509333 0 0 42.88-13.738667 140.8 52.48 40.96-11.392 84.48-17.024 128-17.28 43.52 0.256 87.04 5.888 128 17.28 97.28-66.218667 140.16-52.48 140.16-52.48 27.52 70.528 10.24 122.581333 5.12 135.509333 32.64 35.84 52.48 81.493333 52.48 137.386667 0 196.693333-119.68 240-233.6 252.586667 17.92 15.36 34.56 46.762667 34.56 94.72 0 68.522667-0.64 123.562667-0.64 140.202666 0 13.44 8.96 29.44 35.2 24.32C877.44 942.592 1024 750.592 1024 524.672c0-282.752-229.248-512-512-512"></path>
</svg>
</a>
<a href="https://mmmaxingxing.github.io/index.xml" rel="noopener alternate" type="application/rss+xml"
class="iconfont" title="rss" target="_blank">
<svg class="icon" viewBox="0 0 1024 1024" version="1.1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="30" height="30">
<path d="M819.157333 1024C819.157333 574.592 449.408 204.8 0 204.8V0c561.706667 0 1024 462.293333 1024 1024h-204.842667zM140.416 743.04a140.8 140.8 0 0 1 140.501333 140.586667A140.928 140.928 0 0 1 140.074667 1024C62.72 1024 0 961.109333 0 883.626667s62.933333-140.544 140.416-140.586667zM678.784 1024h-199.04c0-263.210667-216.533333-479.786667-479.744-479.786667V345.173333c372.352 0 678.784 306.517333 678.784 678.826667z"></path>
</svg>
</a>
</div>
<div class="copyright">
<span class="power-by">