本文引用至[码云](https://gitee.com/yzfgits/vue3.x_vw_layout)
[参考文章](https://segmentfault.com/a/1190000013948219)
# vuecli3vw
# 总体思路
- 你可以参考此文档完成`vw`布局适配移动端,适用于`vuecli3.x`搭建的项目
- 此文档是带领你完成一项具体任务,而不是教你如何编程
## 1. 使用`vuecli3`搭建项目
## 2. 在项目根目录的`postcss.config.js`文件中增加配置项
## 3. 使用`npm`下载相关包
## 4. 在`index.html`引入js插件并使用该插件
## 5. 在`App.vue`组件中尝试使用vw布局
## 6. 运行项目,验证是否成功
# 操作流程
### 1. 使用`vuecli3.x`创建项目
```
vue create vuecli3vw
```
- 具体操作步骤参考一下gif图片,此项目勾选了 vue-router, vuex, babel
```
需要注意的是: 询问配置 PostCSS 时需要选择的是 `In dedicated config files` 在专用配置文件中
? Where do you prefer placing config for Babel, PostCSS, ESLint, etc.? (Use arrow keys)
> In dedicated config files
In package.json
```
### 2. 在项目根目录的`postcss.config.js`文件中增加配置项
- `postcss.config.js`全部内容
```
//https://github.com/michael-ciniawsky/postcss-load-config
// module.exports = {
// plugins: {
// autoprefixer: {}
// }
// }
module.exports = {
"plugins": {
"postcss-import": {},
"postcss-url": {},
"postcss-aspect-ratio-mini": {},
"postcss-write-svg": {
utf8: false
},
"postcss-cssnext": {},
"postcss-px-to-viewport": {
viewportWidth: 750, // 视窗的宽度,对应的是我们设计稿的宽度,一般是750
viewportHeight: 1334, // 视窗的高度,根据750设备的宽度来指定,一般指定1334,也可以不配置
unitPrecision: 3, // 指定`px`转换为视窗单位值的小数位数(很多时候无法整除)
viewportUnit: 'vw', // 指定需要转换成的视窗单位,建议使用vw
selectorBlackList: ['.ignore', '.hairlines'], // 指定不转换为视窗单位的类,可以自定义,可以无限添加,建议定义一至两个通用的类名
minPixelValue: 1, // 小于或等于`1px`不转换为视窗单位,你也可以设置为你想要的值
mediaQuery: false // 允许在媒体查询中转换`px`
},
"postcss-viewport-units":{},
"cssnano": {
preset: "advanced",
autoprefixer: false,
"postcss-zindex": false
},
}
}
```
### 3. 使用`npm`下载相关包
```
npm i cssnano postcss-aspect-ratio-mini postcss-cssnext postcss-px-to-viewport postcss-viewport-units postcss-write-svg -S
npm i cssnano-preset-advanced -D
npm i postcss-import postcss-url autoprefixer -D
```
### 4. 在`index.html`引入js插件并使用该插件
```
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title>vuecli3vw</title>
</head>
<body>
<noscript>
<strong>We're sorry but vuecli3vw doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
<script src="//g.alicdn.com/fdilab/lib3rd/viewport-units-buggyfill/0.6.2/??viewport-units-buggyfill.hacks.min.js,viewport-units-buggyfill.min.js"></script>
<script>
window.onload = function () {
window.viewportUnitsBuggyfill.init({
hacks: window.viewportUnitsBuggyfillHacks
});
}
</script>
</body>
</html>
```
### 5. 在`App.vue`组件中尝试使用vw布局
```
<template>
<div id="app">
<div class='box'>
使用 vw 布局
</div>
<div id="nav">
<router-link to="/">Home</router-link> |
<router-link to="/about">About</router-link>
</div>
<router-view/>
</div>
</template>
<style>
html,body{
margin: 0;
padding: 0;
}
.box{
width: 750px;
height: 1000px;
background-color: #ccc;
color: darkred;
font-size: 40px;
}
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
}
</style>
```
### 6. 运行项目,验证是否成功
```
npm run serve
```
- 查看`.box`的`css px`是否成功转为`vw`
- 如果成功转为`vw`,恭喜你成功啦!
## Project setup
```
npm install
```
### Compiles and hot-reloads for development
```
npm run serve
```
### Compiles and minifies for production
```
npm run build
```
相关文件参考
[vw](https://www.cnblogs.com/jinsuo/p/8533269.html)
[vw2](https://note.52admin.net/2018/09/03/Vue-js-%E7%A7%BB%E5%8A%A8%E7%AB%AF%E9%80%82%E9%85%8D%E4%B9%8B-vw-%E8%A7%A3%E5%86%B3%E6%96%B9%E6%A1%88/)
- 1.vue
- 第一章 起步
- 第1节 开发环境配置
- 第2节 hello world
- 第3节 开发todolist
- 1.使用全局组件开发todolist
- 2.使用局部组件
- 第4节 组件的模板写在html中
- 第5节 子组件自定事件,向父组件传递参数
- 第6节 vue-temp
- 第二章 基本
- 第1节实例,挂载点,模板
- 第2节 vue的生命周期
- 2-1 数据改变执行的生命周期函数
- 第3节 v-text/v-html
- 第4节 计算属性,方法,侦听器
- 第5节 计算属性的get,set方法
- 5-1 set
- 第6节 样式绑定
- 第7节 条件渲染
- 第8列表渲染
- 第9节 Vue.set
- 第10节 vue点击事件获取元素的内容
- 第三章 vue组件
- 3-1 使用组件细节
- 3-1-1 组件中的data要是函数
- 3-1-2 ref属性操作DOM
- 3-2 父子组件传值
- 3-2-1 对两个组件的值求和
- 3-3 组件参数校验与非props特性
- 3-4 给组件绑定原生事件@click.native
- 3-5 非父子组件传值
- 3-6 slot
- 3-6-1 使用多个slot
- 3-7 作用域slot
- 3-8 动态组件
- 第四章 动画
- 4-1动画基础
- 4-1-0 动画原理
- 4-1-1 实现一个简单的渐隐渐现动画
- 4-1-2 使用animation实现简单动画
- 4-1-3 自定义v-enter-active,v-leave-active
- 4-1-4 animate.css
- 4-2 vue中使用过渡和动画
- 4-2-1 加载进来就有动画
- 4-2-2 transition和animate.css混用
- 4-3 JS动画与Velocity.js
- 4-3-1 velocity.js
- 4-4 多个元素或组件的过渡
- 4-4-1 组件之间的切换
- 4-5 列表过渡
- 4-6vue中动画的封装
- 4-6-1 使用JS和组件封装一个简单的动画
- 第五章 项目基本配置
- 5-1 vue-cli构造项目的文件介绍
- router.js
- 进行一个简单的路由配置
- App.vue
- 路径
- 5-2 vue-cli中使用vm
- 5-3 样式重置,fastclick,border.css的配置
- 5-4 vue-rem 实现适配
- 第六章 项目开发
- 6-1 在项目中引入iconfont
- 6-2 代码优化
- 6-2-3 设置alias
- 6-3 轮播的开发
- 6-3-1得到一个等比例的div
- 6-3-2 设置swiperList
- 6-3-3 使用swiper控制台报错的解决
- 6-4 图片区域的开发
- 6-4-1 一个简单的算法
- 6-5 使用axios获取首页数据
- 6-5-1 封装一个简单的axios
- 6-5-2 axios跨域
- 第七章 列表页的开发
- 7-1 better-scroll
- 7-2 兄弟组件间联动
- 7-3输入框不能正常输出
- 7-4 项目部署
- 7-5 vuex实现数据共享
- 7-5-1 使用事件向vuex传递数据
- 7-5-2 this.$store.commit
- 7-6 路由
- 7-7 使用localStorage
- 7-8 vuex-state-mutations的切割
- 7-9keep-alive
- 第八章vuex
- 第九章 详情页开发
- 9-1实现动态路由
- 9-2 跳转页面接收传递的参数
- 9-3 全局事件的解绑
- 9-4 递归组件
- 9-5 exclude
- 9-6 解决多个页面相互滚动影响
- 9-7 异步组件
- 9-8 动画插槽
- 2.vue-cube
- 第一章 配置
- 1-1 本地mock数据
- 1-2 路径配置
- 第二章 模块
- 2-1 create-api
- 3.vant-ui
- 第一章 起步
- 第一节 安装
- 第二节 List踩坑记
- 4.weex
- 第一章 开发环境搭建
- 第一节 weex-ui
- 第二节 jdk,sdk配置
- 第二章 内置组件
- 第一节 基础组件
- 第二节 weex的跳转
- 第一节 如何兼容三端
- 5.mpvue
- 第一章 开发环境配置
- 6.问题解决