欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue项目步骤

程序员文章站 2022-03-30 10:19:37
一、vue过滤器组件,组件拆分二、vue-cli安装vue.config.js chainWebpack(config.resolve.alias.set()) //改写成绝对路径module.exports = { chainWebpack: config => { config.resolve.alias .set('@', path.resolve(__dirname, './src/components')) .set('assets',...

一、vue

过滤器
组件,组件拆分

二、vue-cli

  • 安装
  • vue.config.js chainWebpack(config.resolve.alias.set()) //改写成绝对路径
module.exports = {
  chainWebpack: config => {
    config.resolve.alias
      .set('@', path.resolve(__dirname, './src/components'))
      .set('assets', path.resolve(__dirname, './src/assets'))
      .set('views', path.resolve(__dirname, './src/views'))
  },
}

devServer(proxy)// 配置代理

module.exports = {
  devServer: {
    proxy: {
      '/api': {
        target: 'http://localhost:9000',
        changeOrigin: true
      }
    }
  }
}
  • babel-import-plugin babel.config.js
module.exports = {
  presets: [
    '@vue/cli-plugin-babel/preset'
  ],
  plugins: [
    ['import', {
      libraryName: 'vant',
      libraryDirectory: 'es',
      style: true
    }, 'vant']
  ]
}

三、vant

按需引入

tabbar

四、工具

1、json-server

  • json-server ./mock/mock.js -r ./mock/routes.json -p 9000 -w

2、axios

本文地址:https://blog.csdn.net/weixin_44656392/article/details/107173035