# 威马 **Repository Path**: wspWork/weima ## Basic Information - **Project Name**: 威马 - **Description**: 微马 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-06-04 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # REDAME ## components >pop-op => 弹窗 >slide-show => 轮播图 >test-drive-box => 试驾 ## scripts >data.js => 省市数据 ## vue.config >使用postcss-px2rem插件 把px值转换成rem >npm i -D postcss-loader postcss-px2rem ```js // vue.config.js module.exports = { css: { loaderOptions: { css: { // options here will be passed to css-loader }, postcss: { // options here will be passed to postcss-loader plugins: [require('postcss-px2rem')({ remUnit: 75 })] } } } } ```