From 72cc979d5d089bd08fc0e41f512d019e55128b0d Mon Sep 17 00:00:00 2001 From: roger Date: Mon, 20 Feb 2023 14:09:41 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E6=88=90vuex=E4=B8=ADnamespace?= =?UTF-8?q?=E7=9A=84=E5=AD=A6=E4=B9=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../App.vue | 0 .../assets/logo.png | Bin .../components/Count.vue | 0 .../main.js | 0 .../store/index.js | 0 .../App.vue | 0 .../assets/logo.png | Bin .../components/Count.vue | 0 .../components/Person.vue | 0 .../main.js | 0 .../store/index.js | 0 .../App.vue | 19 ++++ .../assets/logo.png | Bin 0 -> 6849 bytes .../components/Count.vue | 54 ++++++++++ .../components/Person.vue | 59 +++++++++++ .../main.js | 26 +++++ .../store/count.js | 35 +++++++ .../store/index.js | 72 +++++++++++++ .../store/person.js | 42 ++++++++ .../vue_code/src/components/Count.vue | 21 ++-- .../vue_code/src/components/Person.vue | 22 +++- 20_脚手架/vue_code/src/store/count.js | 35 +++++++ 20_脚手架/vue_code/src/store/index.js | 95 ++++++++++-------- 20_脚手架/vue_code/src/store/person.js | 42 ++++++++ 24 files changed, 467 insertions(+), 55 deletions(-) rename 20_脚手架/vue_code/{24.src_求和案例_getters、mapState、mapGetters、mapActions、mapMulations => 24.src_vuex_求和案例_getters、mapState、mapGetters、mapActions、mapMulations}/App.vue (100%) rename 20_脚手架/vue_code/{24.src_求和案例_getters、mapState、mapGetters、mapActions、mapMulations => 24.src_vuex_求和案例_getters、mapState、mapGetters、mapActions、mapMulations}/assets/logo.png (100%) rename 20_脚手架/vue_code/{24.src_求和案例_getters、mapState、mapGetters、mapActions、mapMulations => 24.src_vuex_求和案例_getters、mapState、mapGetters、mapActions、mapMulations}/components/Count.vue (100%) rename 20_脚手架/vue_code/{24.src_求和案例_getters、mapState、mapGetters、mapActions、mapMulations => 24.src_vuex_求和案例_getters、mapState、mapGetters、mapActions、mapMulations}/main.js (100%) rename 20_脚手架/vue_code/{24.src_求和案例_getters、mapState、mapGetters、mapActions、mapMulations => 24.src_vuex_求和案例_getters、mapState、mapGetters、mapActions、mapMulations}/store/index.js (100%) rename 20_脚手架/vue_code/{25.src_求和案例_多组件共享数据 => 25.src_vuex_求和案例_多组件共享数据}/App.vue (100%) rename 20_脚手架/vue_code/{25.src_求和案例_多组件共享数据 => 25.src_vuex_求和案例_多组件共享数据}/assets/logo.png (100%) rename 20_脚手架/vue_code/{25.src_求和案例_多组件共享数据 => 25.src_vuex_求和案例_多组件共享数据}/components/Count.vue (100%) rename 20_脚手架/vue_code/{25.src_求和案例_多组件共享数据 => 25.src_vuex_求和案例_多组件共享数据}/components/Person.vue (100%) rename 20_脚手架/vue_code/{25.src_求和案例_多组件共享数据 => 25.src_vuex_求和案例_多组件共享数据}/main.js (100%) rename 20_脚手架/vue_code/{25.src_求和案例_多组件共享数据 => 25.src_vuex_求和案例_多组件共享数据}/store/index.js (100%) create mode 100644 20_脚手架/vue_code/26.src_vuex_求和案例_namespace/App.vue create mode 100644 20_脚手架/vue_code/26.src_vuex_求和案例_namespace/assets/logo.png create mode 100644 20_脚手架/vue_code/26.src_vuex_求和案例_namespace/components/Count.vue create mode 100644 20_脚手架/vue_code/26.src_vuex_求和案例_namespace/components/Person.vue create mode 100644 20_脚手架/vue_code/26.src_vuex_求和案例_namespace/main.js create mode 100644 20_脚手架/vue_code/26.src_vuex_求和案例_namespace/store/count.js create mode 100644 20_脚手架/vue_code/26.src_vuex_求和案例_namespace/store/index.js create mode 100644 20_脚手架/vue_code/26.src_vuex_求和案例_namespace/store/person.js create mode 100644 20_脚手架/vue_code/src/store/count.js create mode 100644 20_脚手架/vue_code/src/store/person.js diff --git a/20_脚手架/vue_code/24.src_求和案例_getters、mapState、mapGetters、mapActions、mapMulations/App.vue b/20_脚手架/vue_code/24.src_vuex_求和案例_getters、mapState、mapGetters、mapActions、mapMulations/App.vue similarity index 100% rename from 20_脚手架/vue_code/24.src_求和案例_getters、mapState、mapGetters、mapActions、mapMulations/App.vue rename to 20_脚手架/vue_code/24.src_vuex_求和案例_getters、mapState、mapGetters、mapActions、mapMulations/App.vue diff --git a/20_脚手架/vue_code/24.src_求和案例_getters、mapState、mapGetters、mapActions、mapMulations/assets/logo.png b/20_脚手架/vue_code/24.src_vuex_求和案例_getters、mapState、mapGetters、mapActions、mapMulations/assets/logo.png similarity index 100% rename from 20_脚手架/vue_code/24.src_求和案例_getters、mapState、mapGetters、mapActions、mapMulations/assets/logo.png rename to 20_脚手架/vue_code/24.src_vuex_求和案例_getters、mapState、mapGetters、mapActions、mapMulations/assets/logo.png diff --git a/20_脚手架/vue_code/24.src_求和案例_getters、mapState、mapGetters、mapActions、mapMulations/components/Count.vue b/20_脚手架/vue_code/24.src_vuex_求和案例_getters、mapState、mapGetters、mapActions、mapMulations/components/Count.vue similarity index 100% rename from 20_脚手架/vue_code/24.src_求和案例_getters、mapState、mapGetters、mapActions、mapMulations/components/Count.vue rename to 20_脚手架/vue_code/24.src_vuex_求和案例_getters、mapState、mapGetters、mapActions、mapMulations/components/Count.vue diff --git a/20_脚手架/vue_code/24.src_求和案例_getters、mapState、mapGetters、mapActions、mapMulations/main.js b/20_脚手架/vue_code/24.src_vuex_求和案例_getters、mapState、mapGetters、mapActions、mapMulations/main.js similarity index 100% rename from 20_脚手架/vue_code/24.src_求和案例_getters、mapState、mapGetters、mapActions、mapMulations/main.js rename to 20_脚手架/vue_code/24.src_vuex_求和案例_getters、mapState、mapGetters、mapActions、mapMulations/main.js diff --git a/20_脚手架/vue_code/24.src_求和案例_getters、mapState、mapGetters、mapActions、mapMulations/store/index.js b/20_脚手架/vue_code/24.src_vuex_求和案例_getters、mapState、mapGetters、mapActions、mapMulations/store/index.js similarity index 100% rename from 20_脚手架/vue_code/24.src_求和案例_getters、mapState、mapGetters、mapActions、mapMulations/store/index.js rename to 20_脚手架/vue_code/24.src_vuex_求和案例_getters、mapState、mapGetters、mapActions、mapMulations/store/index.js diff --git a/20_脚手架/vue_code/25.src_求和案例_多组件共享数据/App.vue b/20_脚手架/vue_code/25.src_vuex_求和案例_多组件共享数据/App.vue similarity index 100% rename from 20_脚手架/vue_code/25.src_求和案例_多组件共享数据/App.vue rename to 20_脚手架/vue_code/25.src_vuex_求和案例_多组件共享数据/App.vue diff --git a/20_脚手架/vue_code/25.src_求和案例_多组件共享数据/assets/logo.png b/20_脚手架/vue_code/25.src_vuex_求和案例_多组件共享数据/assets/logo.png similarity index 100% rename from 20_脚手架/vue_code/25.src_求和案例_多组件共享数据/assets/logo.png rename to 20_脚手架/vue_code/25.src_vuex_求和案例_多组件共享数据/assets/logo.png diff --git a/20_脚手架/vue_code/25.src_求和案例_多组件共享数据/components/Count.vue b/20_脚手架/vue_code/25.src_vuex_求和案例_多组件共享数据/components/Count.vue similarity index 100% rename from 20_脚手架/vue_code/25.src_求和案例_多组件共享数据/components/Count.vue rename to 20_脚手架/vue_code/25.src_vuex_求和案例_多组件共享数据/components/Count.vue diff --git a/20_脚手架/vue_code/25.src_求和案例_多组件共享数据/components/Person.vue b/20_脚手架/vue_code/25.src_vuex_求和案例_多组件共享数据/components/Person.vue similarity index 100% rename from 20_脚手架/vue_code/25.src_求和案例_多组件共享数据/components/Person.vue rename to 20_脚手架/vue_code/25.src_vuex_求和案例_多组件共享数据/components/Person.vue diff --git a/20_脚手架/vue_code/25.src_求和案例_多组件共享数据/main.js b/20_脚手架/vue_code/25.src_vuex_求和案例_多组件共享数据/main.js similarity index 100% rename from 20_脚手架/vue_code/25.src_求和案例_多组件共享数据/main.js rename to 20_脚手架/vue_code/25.src_vuex_求和案例_多组件共享数据/main.js diff --git a/20_脚手架/vue_code/25.src_求和案例_多组件共享数据/store/index.js b/20_脚手架/vue_code/25.src_vuex_求和案例_多组件共享数据/store/index.js similarity index 100% rename from 20_脚手架/vue_code/25.src_求和案例_多组件共享数据/store/index.js rename to 20_脚手架/vue_code/25.src_vuex_求和案例_多组件共享数据/store/index.js diff --git a/20_脚手架/vue_code/26.src_vuex_求和案例_namespace/App.vue b/20_脚手架/vue_code/26.src_vuex_求和案例_namespace/App.vue new file mode 100644 index 0000000..3dc2784 --- /dev/null +++ b/20_脚手架/vue_code/26.src_vuex_求和案例_namespace/App.vue @@ -0,0 +1,19 @@ + + + diff --git a/20_脚手架/vue_code/26.src_vuex_求和案例_namespace/assets/logo.png b/20_脚手架/vue_code/26.src_vuex_求和案例_namespace/assets/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..f3d2503fc2a44b5053b0837ebea6e87a2d339a43 GIT binary patch literal 6849 zcmaKRcUV(fvo}bjDT-7nLI_nlK}sT_69H+`qzVWDA|yaU?}j417wLi^B1KB1SLsC& zL0ag7$U(XW5YR7p&Ux?sP$d4lvMt8C^+TcQu4F zQqv!UF!I+kw)c0jhd6+g6oCr9P?7)?!qX1ui*iL{p}sKCAGuJ{{W)0z1pLF|=>h}& zt(2Lr0Z`2ig8<5i%Zk}cO5Fm=LByqGWaS`oqChZdEFmc`0hSb#gg|Aap^{+WKOYcj zHjINK)KDG%&s?Mt4CL(T=?;~U@bU2x_mLKN!#GJuK_CzbNw5SMEJorG!}_5;?R>@1 zSl)jns3WlU7^J%=(hUtfmuUCU&C3%8B5C^f5>W2Cy8jW3#{Od{lF1}|?c61##3dzA zsPlFG;l_FzBK}8>|H_Ru_H#!_7$UH4UKo3lKOA}g1(R&|e@}GINYVzX?q=_WLZCgh z)L|eJMce`D0EIwgRaNETDsr+?vQknSGAi=7H00r`QnI%oQnFxm`G2umXso9l+8*&Q z7WqF|$p49js$mdzo^BXpH#gURy=UO;=IMrYc5?@+sR4y_?d*~0^YP7d+y0{}0)zBM zIKVM(DBvICK#~7N0a+PY6)7;u=dutmNqK3AlsrUU9U`d;msiucB_|8|2kY=(7XA;G zwDA8AR)VCA#JOkxm#6oHNS^YVuOU;8p$N)2{`;oF|rQ?B~K$%rHDxXs+_G zF5|-uqHZvSzq}L;5Kcy_P+x0${33}Ofb6+TX&=y;;PkEOpz%+_bCw_{<&~ zeLV|!bP%l1qxywfVr9Z9JI+++EO^x>ZuCK);=$VIG1`kxK8F2M8AdC$iOe3cj1fo(ce4l-9 z7*zKy3={MixvUk=enQE;ED~7tv%qh&3lR<0m??@w{ILF|e#QOyPkFYK!&Up7xWNtL zOW%1QMC<3o;G9_S1;NkPB6bqbCOjeztEc6TsBM<(q9((JKiH{01+Ud=uw9B@{;(JJ z-DxI2*{pMq`q1RQc;V8@gYAY44Z!%#W~M9pRxI(R?SJ7sy7em=Z5DbuDlr@*q|25V)($-f}9c#?D%dU^RS<(wz?{P zFFHtCab*!rl(~j@0(Nadvwg8q|4!}L^>d?0al6}Rrv9$0M#^&@zjbfJy_n!%mVHK4 z6pLRIQ^Uq~dnyy$`ay51Us6WaP%&O;@49m&{G3z7xV3dLtt1VTOMYl3UW~Rm{Eq4m zF?Zl_v;?7EFx1_+#WFUXxcK78IV)FO>42@cm@}2I%pVbZqQ}3;p;sDIm&knay03a^ zn$5}Q$G!@fTwD$e(x-~aWP0h+4NRz$KlnO_H2c< z(XX#lPuW_%H#Q+c&(nRyX1-IadKR-%$4FYC0fsCmL9ky3 zKpxyjd^JFR+vg2!=HWf}2Z?@Td`0EG`kU?{8zKrvtsm)|7>pPk9nu@2^z96aU2<#` z2QhvH5w&V;wER?mopu+nqu*n8p~(%QkwSs&*0eJwa zMXR05`OSFpfyRb!Y_+H@O%Y z0=K^y6B8Gcbl?SA)qMP3Z+=C(?8zL@=74R=EVnE?vY!1BQy2@q*RUgRx4yJ$k}MnL zs!?74QciNb-LcG*&o<9=DSL>1n}ZNd)w1z3-0Pd^4ED1{qd=9|!!N?xnXjM!EuylY z5=!H>&hSofh8V?Jofyd!h`xDI1fYAuV(sZwwN~{$a}MX^=+0TH*SFp$vyxmUv7C*W zv^3Gl0+eTFgBi3FVD;$nhcp)ka*4gSskYIqQ&+M}xP9yLAkWzBI^I%zR^l1e?bW_6 zIn{mo{dD=)9@V?s^fa55jh78rP*Ze<3`tRCN4*mpO$@7a^*2B*7N_|A(Ve2VB|)_o z$=#_=aBkhe(ifX}MLT()@5?OV+~7cXC3r!%{QJxriXo9I%*3q4KT4Xxzyd{ z9;_%=W%q!Vw$Z7F3lUnY+1HZ*lO;4;VR2+i4+D(m#01OYq|L_fbnT;KN<^dkkCwtd zF7n+O7KvAw8c`JUh6LmeIrk4`F3o|AagKSMK3))_5Cv~y2Bb2!Ibg9BO7Vkz?pAYX zoI=B}+$R22&IL`NCYUYjrdhwjnMx_v=-Qcx-jmtN>!Zqf|n1^SWrHy zK|MwJ?Z#^>)rfT5YSY{qjZ&`Fjd;^vv&gF-Yj6$9-Dy$<6zeP4s+78gS2|t%Z309b z0^fp~ue_}i`U9j!<|qF92_3oB09NqgAoehQ`)<)dSfKoJl_A6Ec#*Mx9Cpd-p#$Ez z={AM*r-bQs6*z$!*VA4|QE7bf@-4vb?Q+pPKLkY2{yKsw{&udv_2v8{Dbd zm~8VAv!G~s)`O3|Q6vFUV%8%+?ZSVUa(;fhPNg#vab@J*9XE4#D%)$UU-T5`fwjz! z6&gA^`OGu6aUk{l*h9eB?opVdrHK>Q@U>&JQ_2pR%}TyOXGq_6s56_`U(WoOaAb+K zXQr#6H}>a-GYs9^bGP2Y&hSP5gEtW+GVC4=wy0wQk=~%CSXj=GH6q z-T#s!BV`xZVxm{~jr_ezYRpqqIcXC=Oq`b{lu`Rt(IYr4B91hhVC?yg{ol4WUr3v9 zOAk2LG>CIECZ-WIs0$N}F#eoIUEtZudc7DPYIjzGqDLWk_A4#(LgacooD z2K4IWs@N`Bddm-{%oy}!k0^i6Yh)uJ1S*90>|bm3TOZxcV|ywHUb(+CeX-o1|LTZM zwU>dY3R&U)T(}5#Neh?-CWT~@{6Ke@sI)uSuzoah8COy)w)B)aslJmp`WUcjdia-0 zl2Y}&L~XfA`uYQboAJ1;J{XLhYjH){cObH3FDva+^8ioOQy%Z=xyjGLmWMrzfFoH; zEi3AG`_v+%)&lDJE;iJWJDI@-X9K5O)LD~j*PBe(wu+|%ar~C+LK1+-+lK=t# z+Xc+J7qp~5q=B~rD!x78)?1+KUIbYr^5rcl&tB-cTtj+e%{gpZZ4G~6r15+d|J(ky zjg@@UzMW0k9@S#W(1H{u;Nq(7llJbq;;4t$awM;l&(2s+$l!Ay9^Ge|34CVhr7|BG z?dAR83smef^frq9V(OH+a+ki#q&-7TkWfFM=5bsGbU(8mC;>QTCWL5ydz9s6k@?+V zcjiH`VI=59P-(-DWXZ~5DH>B^_H~;4$)KUhnmGo*G!Tq8^LjfUDO)lASN*=#AY_yS zqW9UX(VOCO&p@kHdUUgsBO0KhXxn1sprK5h8}+>IhX(nSXZKwlNsjk^M|RAaqmCZB zHBolOHYBas@&{PT=R+?d8pZu zUHfyucQ`(umXSW7o?HQ3H21M`ZJal+%*)SH1B1j6rxTlG3hx1IGJN^M7{$j(9V;MZ zRKybgVuxKo#XVM+?*yTy{W+XHaU5Jbt-UG33x{u(N-2wmw;zzPH&4DE103HV@ER86 z|FZEmQb|&1s5#`$4!Cm}&`^{(4V}OP$bk`}v6q6rm;P!H)W|2i^e{7lTk2W@jo_9q z*aw|U7#+g59Fv(5qI`#O-qPj#@_P>PC#I(GSp3DLv7x-dmYK=C7lPF8a)bxb=@)B1 zUZ`EqpXV2dR}B&r`uM}N(TS99ZT0UB%IN|0H%DcVO#T%L_chrgn#m6%x4KE*IMfjX zJ%4veCEqbXZ`H`F_+fELMC@wuy_ch%t*+Z+1I}wN#C+dRrf2X{1C8=yZ_%Pt6wL_~ zZ2NN-hXOT4P4n$QFO7yYHS-4wF1Xfr-meG9Pn;uK51?hfel`d38k{W)F*|gJLT2#T z<~>spMu4(mul-8Q3*pf=N4DcI)zzjqAgbE2eOT7~&f1W3VsdD44Ffe;3mJp-V@8UC z)|qnPc12o~$X-+U@L_lWqv-RtvB~%hLF($%Ew5w>^NR82qC_0FB z)=hP1-OEx?lLi#jnLzH}a;Nvr@JDO-zQWd}#k^an$Kwml;MrD&)sC5b`s0ZkVyPkb zt}-jOq^%_9>YZe7Y}PhW{a)c39G`kg(P4@kxjcYfgB4XOOcmezdUI7j-!gs7oAo2o zx(Ph{G+YZ`a%~kzK!HTAA5NXE-7vOFRr5oqY$rH>WI6SFvWmahFav!CfRMM3%8J&c z*p+%|-fNS_@QrFr(at!JY9jCg9F-%5{nb5Bo~z@Y9m&SHYV`49GAJjA5h~h4(G!Se zZmK{Bo7ivCfvl}@A-ptkFGcWXAzj3xfl{evi-OG(TaCn1FAHxRc{}B|x+Ua1D=I6M z!C^ZIvK6aS_c&(=OQDZfm>O`Nxsw{ta&yiYPA~@e#c%N>>#rq)k6Aru-qD4(D^v)y z*>Rs;YUbD1S8^D(ps6Jbj0K3wJw>L4m)0e(6Pee3Y?gy9i0^bZO?$*sv+xKV?WBlh zAp*;v6w!a8;A7sLB*g-^<$Z4L7|5jXxxP1}hQZ<55f9<^KJ>^mKlWSGaLcO0=$jem zWyZkRwe~u{{tU63DlCaS9$Y4CP4f?+wwa(&1ou)b>72ydrFvm`Rj-0`kBJgK@nd(*Eh!(NC{F-@=FnF&Y!q`7){YsLLHf0_B6aHc# z>WIuHTyJwIH{BJ4)2RtEauC7Yq7Cytc|S)4^*t8Va3HR zg=~sN^tp9re@w=GTx$;zOWMjcg-7X3Wk^N$n;&Kf1RgVG2}2L-(0o)54C509C&77i zrjSi{X*WV=%C17((N^6R4Ya*4#6s_L99RtQ>m(%#nQ#wrRC8Y%yxkH;d!MdY+Tw@r zjpSnK`;C-U{ATcgaxoEpP0Gf+tx);buOMlK=01D|J+ROu37qc*rD(w`#O=3*O*w9?biwNoq3WN1`&Wp8TvKj3C z3HR9ssH7a&Vr<6waJrU zdLg!ieYz%U^bmpn%;(V%%ugMk92&?_XX1K@mwnVSE6!&%P%Wdi7_h`CpScvspMx?N zQUR>oadnG17#hNc$pkTp+9lW+MBKHRZ~74XWUryd)4yd zj98$%XmIL4(9OnoeO5Fnyn&fpQ9b0h4e6EHHw*l68j;>(ya`g^S&y2{O8U>1*>4zR zq*WSI_2o$CHQ?x0!wl9bpx|Cm2+kFMR)oMud1%n2=qn5nE&t@Fgr#=Zv2?}wtEz^T z9rrj=?IH*qI5{G@Rn&}^Z{+TW}mQeb9=8b<_a`&Cm#n%n~ zU47MvCBsdXFB1+adOO)03+nczfWa#vwk#r{o{dF)QWya9v2nv43Zp3%Ps}($lA02*_g25t;|T{A5snSY?3A zrRQ~(Ygh_ebltHo1VCbJb*eOAr;4cnlXLvI>*$-#AVsGg6B1r7@;g^L zFlJ_th0vxO7;-opU@WAFe;<}?!2q?RBrFK5U{*ai@NLKZ^};Ul}beukveh?TQn;$%9=R+DX07m82gP$=}Uo_%&ngV`}Hyv8g{u z3SWzTGV|cwQuFIs7ZDOqO_fGf8Q`8MwL}eUp>q?4eqCmOTcwQuXtQckPy|4F1on8l zP*h>d+cH#XQf|+6c|S{7SF(Lg>bR~l(0uY?O{OEVlaxa5@e%T&xju=o1`=OD#qc16 zSvyH*my(dcp6~VqR;o(#@m44Lug@~_qw+HA=mS#Z^4reBy8iV?H~I;{LQWk3aKK8$bLRyt$g?- +
+

当前求和为: {{ sum }}

+

当前求和放大10倍后为: {{ bigSum }}

+

我在{{ school }},学{{ subject }}

+

Person组件的总人数是:{{ personList.length }}

+ + + + + +
+ + + + + \ No newline at end of file diff --git a/20_脚手架/vue_code/26.src_vuex_求和案例_namespace/components/Person.vue b/20_脚手架/vue_code/26.src_vuex_求和案例_namespace/components/Person.vue new file mode 100644 index 0000000..7af6dde --- /dev/null +++ b/20_脚手架/vue_code/26.src_vuex_求和案例_namespace/components/Person.vue @@ -0,0 +1,59 @@ + + + + + \ No newline at end of file diff --git a/20_脚手架/vue_code/26.src_vuex_求和案例_namespace/main.js b/20_脚手架/vue_code/26.src_vuex_求和案例_namespace/main.js new file mode 100644 index 0000000..abf3e27 --- /dev/null +++ b/20_脚手架/vue_code/26.src_vuex_求和案例_namespace/main.js @@ -0,0 +1,26 @@ +// 引入Vue +import Vue from "vue"; +// 引入App +import App from "./App"; +// 引入插件 +import vueResource from "vue-resource"; + +import store from './store' + +// 设置Vue +Vue.config.productionTip = false + +// 使用插件 +Vue.use(vueResource) + +// 实例化Vue +new Vue({ + components: { + App + }, + render: h => h(App), + store, + beforeCreate() { + Vue.prototype.$bus = this // 安装全局事件总线 + } +}).$mount('#app') diff --git a/20_脚手架/vue_code/26.src_vuex_求和案例_namespace/store/count.js b/20_脚手架/vue_code/26.src_vuex_求和案例_namespace/store/count.js new file mode 100644 index 0000000..b30a58f --- /dev/null +++ b/20_脚手架/vue_code/26.src_vuex_求和案例_namespace/store/count.js @@ -0,0 +1,35 @@ +// count相关的设置 +export default { + namespaced: true, + actions: { + vuexAddOdd(context, value) { + if (context.state.sum % 2) { + context.commit('vuexAdd', value) + } + }, + vuexAddWait(context, value) { + setTimeout(() => { + context.commit('vuexAdd', value) + }, 1000 + ) + } + }, + mutations: { + vuexAdd(state, value) { + state.sum += value + }, + vuexSub(state, value) { + state.sum -= value + }, + }, + state: { + sum: 0, + school: '修仙学院', + subject: '修仙', + }, + getters: { + bigSum(state) { + return state.sum * 10 + } + } +} \ No newline at end of file diff --git a/20_脚手架/vue_code/26.src_vuex_求和案例_namespace/store/index.js b/20_脚手架/vue_code/26.src_vuex_求和案例_namespace/store/index.js new file mode 100644 index 0000000..a11063b --- /dev/null +++ b/20_脚手架/vue_code/26.src_vuex_求和案例_namespace/store/index.js @@ -0,0 +1,72 @@ +// 用于创建vue中核心 store +// 引入Vue +import Vue from "vue"; +// 引入vuex +import Vuex from 'vuex' + +import countOptions from './count' +import personOptions from './person' + +// 应用Vuex插件 +Vue.use(Vuex) + +// 准备actions-用于响应组件中的动作,业务逻辑需要写到actions中 +// const actions = { +// vuexAddOdd(context, value) { +// if (context.state.sum % 2) { +// context.commit('vuexAdd', value) +// } +// }, +// vuexAddWait(context, value) { +// setTimeout(() => { +// context.commit('vuexAdd', value) +// }, 1000 +// ) +// } +// } + +//准备mutations-用于操作数据 +// const mutations = { +// vuexAdd(state, value) { +// state.sum += value +// }, +// vuexSub(state, value) { +// state.sum -= value +// }, +// ADD_PERSON(state, personObj) { +// state.personList.unshift(personObj) +// } +// } + +//准备state-用于存储数据 +// const state = { +// sum: 0, +// school: '修仙学院', +// subject: '修仙', +// personList: [ +// {id: '001', name: '张三'} +// ] +// } + +// getters 用于对state中的数据进行加工,类似用computed +// const getters = { +// bigSum(state) { +// return state.sum * 10 +// } +// } + +// 创建并导出store +// export default new Vuex.Store({ +// actions, +// mutations, +// state, +// getters +// }) + +// namespace形式的导出 +export default new Vuex.Store({ + modules: { + countOptions: countOptions, + personOptions: personOptions, + } +}) diff --git a/20_脚手架/vue_code/26.src_vuex_求和案例_namespace/store/person.js b/20_脚手架/vue_code/26.src_vuex_求和案例_namespace/store/person.js new file mode 100644 index 0000000..501b29f --- /dev/null +++ b/20_脚手架/vue_code/26.src_vuex_求和案例_namespace/store/person.js @@ -0,0 +1,42 @@ +// count相关的设置 + +import axios from "axios"; +import {nanoid} from "nanoid"; +export default { + namespaced: true, + actions: { + addPersonWang(context, value) { + if (value.name.indexOf('王') === 0) { + context.commit('ADD_PERSON', value) + }else{ + alert('添加的人必须姓王!') + } + }, + addPersonServer(context) { + axios.get('https://api.uixsj.cn/hitokoto/get?type=social').then( + response => { + context.commit('ADD_PERSON', {id: nanoid(), name: response.data}) + + }, + error => { + alert(error.message) + } + ) + } + }, + mutations: { + ADD_PERSON(state, personObj) { + state.personList.unshift(personObj) + } + }, + state: { + personList: [ + {id: '001', name: '张三'} + ] + }, + getters: { + firstPersonName(state) { + return state.personList[0].name + } + } +} \ No newline at end of file diff --git a/20_脚手架/vue_code/src/components/Count.vue b/20_脚手架/vue_code/src/components/Count.vue index 60fffa8..8967479 100644 --- a/20_脚手架/vue_code/src/components/Count.vue +++ b/20_脚手架/vue_code/src/components/Count.vue @@ -3,7 +3,7 @@

当前求和为: {{ sum }}

当前求和放大10倍后为: {{ bigSum }}

我在{{ school }},学{{ subject }}

-

Person组件的总人数是:{{personList.length}}

+

Person组件的总人数是:{{ personList.length }}

+ +
  • {{ p.name }}
@@ -23,18 +26,29 @@ export default { }, computed: { personList() { - return this.$store.state.personList + return this.$store.state.personOptions.personList }, sum() { - return this.$store.state.sum + return this.$store.state.countOptions.sum + }, + firstPersonName() { + return this.$store.getters["personOptions/firstPersonName"] } - // ...mapState(['personList']), + }, methods: { add() { const personObj = {id: nanoid(), name:this.name} - this.$store.commit('ADD_PERSON', personObj) + this.$store.commit('personOptions/ADD_PERSON', personObj) + this.name = '' + }, + addWang() { + const personObj = {id: nanoid(), name:this.name} + this.$store.dispatch('personOptions/addPersonWang', personObj) this.name = '' + }, + addPersonServer() { + this.$store.dispatch('personOptions/addPersonServer') } } } diff --git a/20_脚手架/vue_code/src/store/count.js b/20_脚手架/vue_code/src/store/count.js new file mode 100644 index 0000000..b30a58f --- /dev/null +++ b/20_脚手架/vue_code/src/store/count.js @@ -0,0 +1,35 @@ +// count相关的设置 +export default { + namespaced: true, + actions: { + vuexAddOdd(context, value) { + if (context.state.sum % 2) { + context.commit('vuexAdd', value) + } + }, + vuexAddWait(context, value) { + setTimeout(() => { + context.commit('vuexAdd', value) + }, 1000 + ) + } + }, + mutations: { + vuexAdd(state, value) { + state.sum += value + }, + vuexSub(state, value) { + state.sum -= value + }, + }, + state: { + sum: 0, + school: '修仙学院', + subject: '修仙', + }, + getters: { + bigSum(state) { + return state.sum * 10 + } + } +} \ No newline at end of file diff --git a/20_脚手架/vue_code/src/store/index.js b/20_脚手架/vue_code/src/store/index.js index 1decd27..a11063b 100644 --- a/20_脚手架/vue_code/src/store/index.js +++ b/20_脚手架/vue_code/src/store/index.js @@ -4,56 +4,69 @@ import Vue from "vue"; // 引入vuex import Vuex from 'vuex' +import countOptions from './count' +import personOptions from './person' + // 应用Vuex插件 Vue.use(Vuex) // 准备actions-用于响应组件中的动作,业务逻辑需要写到actions中 -const actions = { - vuexAddOdd(context, value) { - if (context.state.sum % 2) { - context.commit('vuexAdd', value) - } - }, - vuexAddWait(context, value) { - setTimeout(() => { - context.commit('vuexAdd', value) - }, 1000 - ) - } -} +// const actions = { +// vuexAddOdd(context, value) { +// if (context.state.sum % 2) { +// context.commit('vuexAdd', value) +// } +// }, +// vuexAddWait(context, value) { +// setTimeout(() => { +// context.commit('vuexAdd', value) +// }, 1000 +// ) +// } +// } + //准备mutations-用于操作数据 -const mutations = { - vuexAdd(state, value) { - state.sum += value - }, - vuexSub(state, value) { - state.sum -= value - }, - ADD_PERSON(state, personObj) { - state.personList.unshift(personObj) - } -} +// const mutations = { +// vuexAdd(state, value) { +// state.sum += value +// }, +// vuexSub(state, value) { +// state.sum -= value +// }, +// ADD_PERSON(state, personObj) { +// state.personList.unshift(personObj) +// } +// } + //准备state-用于存储数据 -const state = { - sum: 0, - school: '修仙学院', - subject: '修仙', - personList: [ - {id:'001', name:'张三'} - ] -} +// const state = { +// sum: 0, +// school: '修仙学院', +// subject: '修仙', +// personList: [ +// {id: '001', name: '张三'} +// ] +// } // getters 用于对state中的数据进行加工,类似用computed -const getters = { - bigSum(state) { - return state.sum * 10 - } -} +// const getters = { +// bigSum(state) { +// return state.sum * 10 +// } +// } // 创建并导出store +// export default new Vuex.Store({ +// actions, +// mutations, +// state, +// getters +// }) + +// namespace形式的导出 export default new Vuex.Store({ - actions, - mutations, - state, - getters + modules: { + countOptions: countOptions, + personOptions: personOptions, + } }) diff --git a/20_脚手架/vue_code/src/store/person.js b/20_脚手架/vue_code/src/store/person.js new file mode 100644 index 0000000..501b29f --- /dev/null +++ b/20_脚手架/vue_code/src/store/person.js @@ -0,0 +1,42 @@ +// count相关的设置 + +import axios from "axios"; +import {nanoid} from "nanoid"; +export default { + namespaced: true, + actions: { + addPersonWang(context, value) { + if (value.name.indexOf('王') === 0) { + context.commit('ADD_PERSON', value) + }else{ + alert('添加的人必须姓王!') + } + }, + addPersonServer(context) { + axios.get('https://api.uixsj.cn/hitokoto/get?type=social').then( + response => { + context.commit('ADD_PERSON', {id: nanoid(), name: response.data}) + + }, + error => { + alert(error.message) + } + ) + } + }, + mutations: { + ADD_PERSON(state, personObj) { + state.personList.unshift(personObj) + } + }, + state: { + personList: [ + {id: '001', name: '张三'} + ] + }, + getters: { + firstPersonName(state) { + return state.personList[0].name + } + } +} \ No newline at end of file