vue 配置移动单位转换插件

   日期:2020-06-05     浏览:100    评论:0    
核心提示:vue配置移动单位转换插件

vue 配置移动单位转换插件

    • 首先安装(`自己创建一个vue项目,这儿就直接跳过了`)
    • 在项目入口文件main.js 中引入`amfe-flexible`
    • 在根目录的index.html 的头部加入手机端适配的meta代码(`有的话就不用加了`)
    • 在vue.config.js 中的 css.loaderOptions.postcss 配置 `postcss-loader`
    • 在vue文件中使用:
    • 效果展示
    • 参考链接:

首先安装(自己创建一个vue项目,这儿就直接跳过了)

npm i  amfe-flexible -S
npm i postcss-pxtorem -S

在项目入口文件main.js 中引入amfe-flexible

import 'amfe-flexible';

在根目录的index.html 的头部加入手机端适配的meta代码(有的话就不用加了)

<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">

在vue.config.js 中的 css.loaderOptions.postcss 配置 postcss-loader

//引入:
const autoprefixer = require('autoprefixer');
const pxtorem = require('postcss-pxtorem');
module.exports = {
	css:{
		// 是否使用css分离插件 ExtractTextPlugin
		extract: true,
		// 开启 CSS source maps?
		sourceMap: false,
		// 启用 CSS modules for all css / pre-processor files.
		requireModuleExtension: true,
		// css预设器配置项
		loaderOptions: {
			postcss: {
				plugins: [
					autoprefixer({
						overrideBrowserslist: [
							"Android 4.1",
							"iOS 7.1",
							"Chrome > 31",
							"ff > 31",
							"ie >= 8"
						]
					}),
					pxtorem({
						rootValue: 37.5,// 配置视窗口尺寸
						propList: ['*']
					})
				]
			}
		}
	}
}

在vue文件中使用:

//app.vue
<template>
	<div id="app"></div>
</template>
<style>
	#app{
		width: 750px;
		height: 200px;
		background-color: red;
	}
</style>

效果展示

如图:红色区域已经转换成功

参考链接:

amfe-flexible
postcss-pxtorem

 
标签: 文章标签: vue
打赏
 本文转载自:网络 
所有权利归属于原作者,如文章来源标示错误或侵犯了您的权利请联系微信13520258486
更多>最近资讯中心
更多>最新资讯中心
更多>相关资讯中心
0相关评论

推荐图文
推荐资讯中心
点击排行
最新信息
新手指南
采购商服务
供应商服务
交易安全
关注我们
手机网站:
新浪微博:
微信关注:

13520258486

周一至周五 9:00-18:00
(其他时间联系在线客服)

24小时在线客服