├── .gitattributes
├── .gitignore
├── README.md
├── babel.config.js
├── dist
├── css
│ ├── app.067151cb.css
│ └── chunk-vendors.1d96ec67.css
├── favicon.ico
├── fonts
│ ├── fontawesome-webfont.674f50d2.eot
│ ├── fontawesome-webfont.af7ae505.woff2
│ ├── fontawesome-webfont.b06871f2.ttf
│ └── fontawesome-webfont.fee66e71.woff
├── img
│ ├── fontawesome-webfont.912ec66d.svg
│ └── right.560c4f47.png
├── index.html
└── js
│ ├── app.5a8487fd.js
│ ├── app.5a8487fd.js.map
│ ├── chunk-vendors.08e1b7b1.js
│ └── chunk-vendors.08e1b7b1.js.map
├── docs
└── images
│ └── public_1.png
├── package-lock.json
├── package.json
├── postcss.config.js
├── public
├── favicon.ico
└── index.html
├── src
├── App.vue
├── assets
│ ├── css
│ │ ├── font.css
│ │ └── style.css
│ └── image
│ │ ├── flash.jpg
│ │ ├── home-logo.png
│ │ ├── icon-slides.png
│ │ ├── logo-footer.png
│ │ ├── mi-home.png
│ │ ├── mi-logo.png
│ │ ├── right.png
│ │ └── slogan2016.png
├── bus.js
├── components
│ ├── FlashSale.vue
│ ├── GoodsSale.vue
│ ├── MenuBanner.vue
│ ├── SiteFooter.vue
│ ├── SiteInfo.vue
│ ├── SubChannel.vue
│ ├── ToolBar.vue
│ ├── TopBar.vue
│ ├── TopHeader.vue
│ └── VideoBox.vue
├── main.js
├── parts
│ ├── Banner.vue
│ ├── GoodsBox.vue
│ ├── LocationWindow.vue
│ ├── Poster.vue
│ ├── Slide.vue
│ ├── VideoWindow.vue
│ └── WeChatWindow.vue
├── router.js
└── views
│ └── mi.vue
└── vue.config.js
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | .DS_Store
3 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # 小米商城首页-使用Vue仿写
2 | 
3 | > ### 简介
4 |
5 | * 基于Vue的小米商城首页仿写,这是我学习Vue路上的一个大型项目(DEMO),原版代码发布于``MyProject-Contents``仓库,现在迁移到这里。
6 |
7 | * 项目没有用到API,图片等静态资源都是直接引用官网的,如果图片原地址更改,那么部分图片可能存在**无法加载**的情况。所有的动画效果都是纯手写的。
8 |
9 | * 项目预览地址:[请点这里](https://starlightunion.github.io/Xiaomi-Vue/dist/index.html#/)
10 |
11 | > ### 学习到的内容
12 |
13 | * 1.Vue的一次深入了解,对整个框架有了完整的印象;学习了Vue的**组件化思想**,项目组件化复用;熟悉了项目开发时的配置和结构等。
14 |
15 | * 2.Vue的**通信**方式。
16 | > * ``props``父->子组件通信
17 | >
18 | > ```
19 | > // 父组件
20 | >
Please select location or language
13 |