首页 > 技术文章 > vue构建移动端项目

LYL-8 2019-07-03 15:15 原文

一、重置样式

https://meyerweb.com/eric/tools/css/reset/

 

二、添加移动端300ms点击延迟问题

npm install fastclick -S

之后,在main.js中引入,并绑定到body。

import FastClick from 'fastclick'

FastClick.attach(document.body);

 

三、vue项目中使用jquery

https://blog.csdn.net/qq_38945126/article/details/

 

 四、移动端适配问题以及移动端注意事项

移动端WEB资源整理:https://www.cnblogs.com/PeunZhang/p/3407453.html

从网易与淘宝的font-size思考前端设计稿与工作流https://www.cnblogs.com/lyzg/p/4877277.html#_label0

使用Flexible实现手淘H5页面的终端适配

https://www.w3cplus.com/mobile/lib-flexible-for-html5-layout.html  查看码:436473

如何在Vue项目中使用vw实现移动端适配

https://www.w3cplus.com/mobile/vw-layout-in-vue.html  查看码:279933

推荐阅读