You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
867 B

4 years ago
4 years ago
  1. # coach_assistant
  2. ## Project setup
  3. ```
  4. yarn install
  5. ```
  6. ### Compiles and hot-reloads for development
  7. ```
  8. yarn serve
  9. ```
  10. ### Compiles and minifies for production
  11. ```
  12. yarn build
  13. ```
  14. ### Customize configuration
  15. See [Configuration Reference](https://cli.vuejs.org/config/).
  16. ### 库
  17. ```
  18. vuex、numeral
  19. 依赖-> sass-loader/ node-sass/
  20. ```
  21. *sass 需要cnpm装,npm安装报错*
  22. > 原型链接:https://org.modao.cc/app/d33151880c5a6a975b9f3af1868bf3a125a8923b?simulator_type=outside_artboard&sticky
  23. > 设计稿链接:https://lanhuapp.com/web/#/item/project/board?pid=ea91cb92-0502-40c9-a746-e68d121e26fd
  24. ### ipx 底部适配高度函数
  25. ```css
  26. padding-bottom: 0;
  27. padding-bottom: calc( 0 + constant(safe-area-inset-bottom)); /* 兼容 iOS < 11.2 */
  28. padding-bottom: calc( 0 + env(safe-area-inset-bottom)); /* 兼容 iOS >= 11.2 */
  29. ```