VUE:vue-cli

2020-03-04  本文已影响0人  16325

vue-cli

vue-cli是vue开发的脚手架

安装

npm list -g vue-cli

npm uninstall vue-cli -g

npm install -g @vue/cli

注意

创建项目

vue create hello-world


image.png

vue ui


image.png

目录层次

image.png
// vue.config.js
module.exports = {
    // 选项...
    baseUrl:"./",
    outputDir:"dist",
    assetsDir:"assets",
    indexPath:"index.html",
    filenameHashing:true,
    pages:undefined,
    lintOnSave:true,
    runtimeCompiler:false,
    transpileDependencies:[],
    productionSourceMap:false,
    crossorigin:undefined,
    integrity:false,
    devServer:{//代理
        port:8086,
        proxy:'http://192.168.255.201:8082'
    }
}
上一篇下一篇

猜你喜欢

热点阅读