适配移动端

修改 html 的 font-size, 使用 px-to-rem 插件将所有 px 单位都转换为 rem

  1. html {
  2. font-size: 26.6667vw;
  3. }

使用媒体查询,处理视口宽度过大的情况

  1. @media(min-width: 576px) {
  2. html {
  3. font-size: 130px !important;
  4. }
  5. body {
  6. background: #0d1117;
  7. }
  8. #app {
  9. max-width: 3.75rem;
  10. margin: 0 auto;
  11. background: white;
  12. }
  13. }

修改title

在 vue.config.js 中添加配置

  1. // vue.config.js
  2. module.exports = {
  3. chainWebpack: config => {
  4. config
  5. .plugin('html')
  6. .tap(args => {
  7. args[0].title = '西西超市'
  8. return args
  9. })
  10. }
  11. }