嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
vue-shop-master
├── README.md
├── babel.config.js
├── package-lock.json
├── package.json
├── postcss.config.js
├── prettier.config.js
├── public
│ ├── index.html
│ ├── js
│ │ └── flexible.js
│ └── logo.png
├── src
│ ├── App.vue
│ ├── assets
│ │ ├── css
│ │ │ ├── base.css
│ │ │ └── normalize.min.css
│ │ └── img
│ │ ├── common
│ │ │ ├── back.svg
│ │ │ ├── collect.svg
│ │ │ ├── placeholder.png
│ │ │ └── top.png
│ │ ├── detail
│ │ │ └── detail_bottom.png
│ │ ├── home
│ │ │ └── recommend_bg.png
│ │ └── profile
│ │ ├── arrow_right.png
│ │ ├── phone.png
│ │ └── user.png
│ ├── common
│ │ ├── mixin.js
│ │ └── utils.js
│ ├── components
│ │ ├── common
│ │ │ ├── gridView
│ │ │ │ └── GridView.vue
│ │ │ ├── navbar
│ │ │ │ └── NavBar.vue
│ │ │ ├── scroll
│ │ │ │ └── Scroll.vue
│ │ │ ├── swiper
│ │ │ │ └── MySwiper.vue
│ │ │ ├── tabbar
│ │ │ │ └── TabBar.vue
│ │ │ └── toast
│ │ │ ├── MyToast.vue
│ │ │ └── index.js
│ │ └── content
│ │ ├── backTop
│ │ │ └── BackTop.vue
│ │ ├── goods
│ │ │ └── GoodsList.vue
│ │ └── tabControl
│ │ └── TabControl.vue
│ ├── main-dev.js
│ ├── main-prod.js
│ ├── network
│ │ ├── category.js
│ │ ├── home.js
│ │ ├── productDetail.js
│ │ └── request.js
│ ├── router
│ │ └── index.js
│ ├── store
│ │ ├── actions.js
│ │ ├── getters.js
│ │ ├── index.js
│ │ ├── mutations.js
│ │ └── types.js
│ └── views
│ ├── cart
│ │ ├── Cart.vue
│ │ └── children
│ │ └── CartList.vue
│ ├── category
│ │ ├── Category.vue
│ │ └── children
│ │ ├── SlideBar.vue
│ │ └── Subcategory.vue
│ ├── detail
│ │ ├── ProductDetail.vue
│ │ └── children
│ │ ├── DetailBaseInfo.vue
│ │ ├── DetailBottomBar.vue
│ │ ├── DetailCommentInfo.vue
│ │ ├── DetailImagesInfo.vue
│ │ ├── DetailParamInfo.vue
│ │ ├── DetailShopInfo.vue
│ │ ├── DetailSwiper.vue
│ │ └── ProductDetailNavBar.vue
│ ├── home
│ │ ├── Home.vue
│ │ └── children
│ │ ├── FeatureView.vue
│ │ └── RecommendView.vue
│ └── profile
│ ├── Profile.vue
│ └── children
│ ├── Login.vue
│ ├── Money.vue
│ └── profileList.vue
└── vue.config.js
37 directories, 67 files