1. 程式人生 > >Vue 安裝與配置

Vue 安裝與配置

安裝Vue: 1、必須安裝node.js,安裝git(這個可以不用,不過習慣了)

2、安裝webpack·npm install -g webpack

3、使用淘寶映象(用cnpm命令代替npm,這個也可以不用安裝,只是使用npm安裝依賴包是會慢那麼一點):npm install -g cnpm --registry=https://registry.npm.taobao.org

4、安裝vue的腳手架工具 npm install -g vue-cli

5、建立專案

5.1第一種方法

  1. vue init webpack vue01,此時會不斷要你輸入些東西,注意到Eslint那個選項是選擇 N

    (Eslint是語法規則和程式碼風格的檢查工具,會自動檢測當前專案的程式碼是否符合預設的規則,如果你的程式碼寫得不符合預設的規則會報錯),然後一直回車。

  2. 建立好專案之後,進入到該專案,然後執行 npm run dev命令執行專案

5.2第二種方法,按順序執行以下命令,會得到一個simple的vue專案

  1. vue init webpack-simple vue02
  2. cd vue02
  3. npm run dev //執行專案

這裡寫圖片描述

專案執行後如圖。

以上是按照第二種方法建立的專案。

此時你已經成功建立了一個vue專案,可以做開發了。 如果你對vue的配置檔案有興趣請接著閱讀。

package.json

{
  "name": "vue02",
  "description": "A Vue.js project",
  "version": "1.0.0",
  "author": "kristen154",
  "license": "MIT",
  "private": true,
  //上邊是一些info

  "scripts": {      
     
  //cross-env能跨平臺地設定及使用環境變數,因為windows平臺與POSIX在使用命令列時有許多區別,使用cross-env能在不同平臺使用唯一指令,無需擔心跨平臺問題
  //這裡配置了development和production環境裡用不同的命令 分別是 npm run dev 和 npm run build

    "dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",   //開啟瀏覽器,熱部署
    "build": "cross-env NODE_ENV=production webpack --progress --hide-modules" //打包
  },

  //專案上線時所以來的包,沒有這些包則會報錯
  //執行 npm install -save xxx 寫到這裡
  "dependencies": { 
    "vue": "^2.5.11"
  },

  //目標瀏覽器配置表
  "browserslist": [
    "> 1%",
    "last 2 versions",
    "not ie <= 8"
  ],


//開發時所需要用到的包,如webpack這些構建工具,上線以後不關它們的事了
//執行 npm install -save-dev xxx 寫到這裡
  "devDependencies": { 
    "babel-core": "^6.26.0",
    "babel-loader": "^7.1.2",
    "babel-preset-env": "^1.6.0",
    "babel-preset-stage-3": "^6.24.1",
    "cross-env": "^5.0.5",
    "css-loader": "^0.28.7",
    "file-loader": "^1.1.4",
    "node-sass": "^4.5.3",
    "sass-loader": "^6.0.6",
    "vue-loader": "^13.0.5",
    "vue-template-compiler": "^2.4.4",
    "webpack": "^3.6.0",
    "webpack-dev-server": "^2.9.1"
  }
}

webpack.config.js

var path = require('path')
var webpack = require('webpack')

module.exports = {
  entry: './src/main.js',     //入口js
  output: {
    path: path.resolve(__dirname, './dist'),
    publicPath: '/dist/',     //輸出了路徑
    filename: 'build.js'      //輸出build.js
  },

//一些loader
  module: {
    rules: [
      {
        test: /\.css$/,       //使專案可以解析css
        use: [
          'vue-style-loader',
          'css-loader'
        ],
      },
      {
        test: /\.scss$/,       //使專案可以解析scss
        use: [
          'vue-style-loader',
          'css-loader',
          'sass-loader'
        ],
      },
      {
        test: /\.sass$/,       //使專案可以解析字尾名為sass
        use: [
          'vue-style-loader',
          'css-loader',
          'sass-loader?indentedSyntax'
        ],
      },
      {
        test: /\.vue$/,       //使專案可以解析字尾名為vue
        loader: 'vue-loader',
        options: {
          loaders: {
            // Since sass-loader (weirdly) has SCSS as its default parse mode, we map
            // the "scss" and "sass" values for the lang attribute to the right configs here.
            // other preprocessors should work out of the box, no loader config like this necessary.
            'scss': [
              'vue-style-loader',
              'css-loader',
              'sass-loader'
            ],
            'sass': [
              'vue-style-loader',
              'css-loader',
              'sass-loader?indentedSyntax'
            ]
          }
          // other vue-loader options go here
        }
      },
      {
        test: /\.js$/,
        loader: 'babel-loader',
        exclude: /node_modules/
      },
      {
        test: /\.(png|jpg|gif|svg)$/,
        loader: 'file-loader',
        options: {
          name: '[name].[ext]?[hash]'
        }
      }
    ]
  },


  //Resolve配置webpack如何尋找模組對應的檔案
  //alias配置項表示通過別名來把原來匯入路徑對映成一個新的匯入路徑,即import ***vue 會變成 import 'vue/dist/vue.esm.js
  //extensions在匯入語句沒帶檔案字尾時,webpack會自動帶上字尾去嘗試訪問檔案是否存在。就是說當遇到require('./lala')這樣的匯入語句時,會試著找./lala.js,否則找./lala.vue...直到成功或找不到(報錯)
  
  resolve: {
    alias: {                        
      'vue$': 'vue/dist/vue.esm.js'  
    },
    extensions: ['*', '.js', '.vue', '.json']
    
  },


  devServer: {
    historyApiFallback: true,
    noInfo: true,
    overlay: true
  },
  performance: {
    hints: false
  },
  devtool: '#eval-source-map'
}



//根據不同環境來暴露配置
if (process.env.NODE_ENV === 'production') {
  module.exports.devtool = '#source-map'
  // http://vue-loader.vuejs.org/en/workflow/production.html
  module.exports.plugins = (module.exports.plugins || []).concat([
    new webpack.DefinePlugin({
      'process.env': {
        NODE_ENV: '"production"'
      }
    }),
    new webpack.optimize.UglifyJsPlugin({
      sourceMap: true,
      compress: {
        warnings: false
      }
    }),
    new webpack.LoaderOptionsPlugin({
      minimize: true
    })
  ])
}

嘛嘛,不用太過糾結這兩個檔案,因為基本不會需要你做什麼修改。

我們做開發主要在src資料夾裡開發。