欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

使用Webpack 搭建 Vue3 開發(fā)環(huán)境過程詳解

 更新時間:2020年07月28日 14:48:53   作者:by.Genesis  
這篇文章主要介紹了使用Webpack 搭建 Vue3 開發(fā)環(huán)境過程詳解,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧

從零開始使用 Webpack 搭建 Vue3 開發(fā)環(huán)境

創(chuàng)建項目

首先需要創(chuàng)建一個空目錄,在該目錄打開命令行,執(zhí)行 npm init 命令創(chuàng)建一個項目,這個過程會提示輸入一些內(nèi)容,完成后會自動生成一個 package.json 文件

Webpack 的配置文件

project

 project-name
+ |- index.html
 |- package.json
+ |- webpack.config.js
+ |- /src
+ |- index.js

webpack.config.js

'use strict'

const path = require('path')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const { VueLoaderPlugin } = require('vue-loader')

module.exports = {
 mode: 'development',
 entry: './src/index.js',
 output: {
 filename: 'index.js',
 path: path.resolve(__dirname, 'dist')
 },
 resolve: {
 alias: {
  'vue': '@vue/runtime-dom',
  'vuex': 'vuex/dist/vuex.esm-bundler',
  '@': path.join(__dirname, 'src')
 }
 },
 module: {
 rules: [
  {
  test: /\.vue$/,
  use: [
   {
   loader: 'vue-loader'
   }
  ]
  },
  {
  test: /\.css$/,
  use: [
   {
   loader: 'style-loader'
   },
   {
   loader: 'css-loader'
   }
  ]
  },
  {
  test: /\.(png|jpe?g|gif)$/i,
  loader: 'file-loader'
  options: {
   name: 'images/[name].[ext]'
  }
  }
 ]
 },
 plugins: [
 new HtmlWebpackPlugin({
  filename: 'index.html',
  template: './index.html'
 }),
 new VueLoaderPlugin()
 ],
 devServer: {
 compress: true,
 port: 8080
 }
}

安裝依賴

npm install --save-dev css-loader file-loader html-webpack-plugin style-loader vue-loader@16.0.0-beta.4 @vue/compiler-sfc webpack webpack-cli webpack-dev-server
  • VueLoaderPlugin 的導(dǎo)入方式改變了
  • vue-loader@16.0.0-beta.4 當(dāng)前需要自行指定版本
  • vue-template-compiler 沒有了,新增了 @vue/compiler-sfc
  • 其它都是 Webpack 基本配置

Vue

npm install --save vue@3.0.0-beta.15 vue-router@4.0.0-alpha.13 vuex@4.0.0-beta.2

當(dāng)前均需要自行指定版本

根組件

project

 project-name
 |- package.json
 |- /src
+ |- app.vue

app.vue

<template>
 <ul>
 <li><router-link to="/">Home</router-link></li>
 <li><router-link to="/about">About</router-link></li>
 </ul>
 <router-view/>
</template>
  • 組件根元素允許為多個

入口文件

src/index.js

import { createApp } from 'vue'

import App from '@/app.vue'
import router from '@/router'
import store from '@/store'

createApp(app)
 .use(router)
 .use(store)
 .mount('#app')

不同于 Vue2.0 的整包導(dǎo)入方式,Vue3.0 采用了按需導(dǎo)入的方式,比如這里只導(dǎo)入了 createApp 這個方法,這樣做的好處是可以支持 Webpack 的 treeshaking, 其它沒有用到的部分將不會出現(xiàn)在最終打包文件中

Vue3.0 的響應(yīng)式系統(tǒng)使用了 ES2015 的 Proxy (代理),其瀏覽器兼容性參考 CanIUse,該特性無法兼容舊瀏覽器

Router

project

 project-name
 |- package.json
 |- /src
+ |- /router
+  |- index.js

src/router/index.js

import { createRouter, createWebHashHistory } from 'vue-router'

const routes = [
 {
 path: '/',
 component: require('@/views/index.vue').default
 },
 {
 path: '/about',
 component: require('@/views/about.vue').default
 },
 {
 path: '/:catchAll(.*)',
 component: require('@/views/404.vue').default
 }
]

const router = createRouter({
 history: createWebHashHistory(),
 routes
})

export default router
  • 導(dǎo)入方式也為按需導(dǎo)入
  • 原來的 mode 參數(shù)變?yōu)?history
  • 除了 createWebHashHistory,還有 createWebHistory 和 createMemoryHistory
  • 路由未匹配時使用 '/:catchAll(.*)'

在組件中使用 router

import { useRouter } from 'vue-router'

export default {
 setup() {
 const router = useRouter()

 // 也可以解構(gòu)
 const { push, go, back } = useRouter()
 }
}

router 就是原來實例的 $router,也有 beforeEach, afterEach 等等方法

在組件中使用 route

import { useRoute } from 'vue-router'

export default {
 setup() {
 const route = useRoute()
 }
}
  • route 是個響應(yīng)式的代理對象,和原來實例的 $route 一樣,也有 query, params 等屬性
  • 不建議將 route 解構(gòu),解構(gòu)后的 query, params 并不是響應(yīng)式的

Store

project

 project-name
 |- package.json
 |- /src
+ |- /store
+  |- index.js

該文件創(chuàng)建并導(dǎo)出一個 Vuex 實例

src/store/index.js

import { createStore } from 'vuex'

const store = createStore({
 state: {},
 getters: {},
 mutations: {},
 actions: {}
})

export default store
  • 導(dǎo)入方式也為按需導(dǎo)入
  • 其它照舊,沒有什么變化

在組件中使用 store

import { useStore } from 'vuex'

export default {
 setup() {
 const { state, getters, commit, dispatch } = useStore()

 return {
  state
 }
 }
}

state 是響應(yīng)式的代理對象,不通過 commit 提交 mutations 而是直接修改 state 也是可以的,控制臺并沒有給出什么警告

NPM Scripts

在 package.json 文件對應(yīng)的 scripts 處新增命令

package.json

{
 "scripts": {
 "dev": "webpack-dev-server",
 "build": "webpack"
 }
}

到此這篇關(guān)于使用Webpack 搭建 Vue3 開發(fā)環(huán)境過程詳解的文章就介紹到這了,更多相關(guān)Webpack 搭建 Vue3 開發(fā)環(huán)境內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • 在vue項目中利用popstate處理頁面返回的操作介紹

    在vue項目中利用popstate處理頁面返回的操作介紹

    這篇文章主要介紹了在vue項目中利用popstate處理頁面返回的操作介紹,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2020-08-08
  • Vue3 使用Vuex和router的注意事項及操作方法

    Vue3 使用Vuex和router的注意事項及操作方法

    在vue2中 使用的?this.$route?和?this.$router?this.$store的使用在vue3中完全適用,這篇文章主要介紹了Vue3 使用Vuex和router的注意事項及操作方法,需要的朋友可以參考下
    2022-12-12
  • 解決iview table組件里的 固定列 表格不自適應(yīng)的問題

    解決iview table組件里的 固定列 表格不自適應(yīng)的問題

    這篇文章主要介紹了解決iview table組件里的 固定列 表格不自適應(yīng)的問題,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2020-11-11
  • 基于Vue實現(xiàn)支持按周切換的日歷

    基于Vue實現(xiàn)支持按周切換的日歷

    這篇文章主要為大家詳細介紹了基于Vue實現(xiàn)支持按周切換的日歷,根據(jù)實際開發(fā)情況按每年、每月、每周進行切換,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-08-08
  • vue通過tailwindcss實現(xiàn)class動態(tài)綁定

    vue通過tailwindcss實現(xiàn)class動態(tài)綁定

    這篇文章主要介紹了vue通過tailwindcss實現(xiàn)class動態(tài)綁定,文中給大家介紹了一些常用類名語法記錄,對vue動態(tài)綁定class相關(guān)知識感興趣的朋友一起看看吧
    2023-07-07
  • vue實現(xiàn)tab切換的3種方式及切換保持?jǐn)?shù)據(jù)狀態(tài)

    vue實現(xiàn)tab切換的3種方式及切換保持?jǐn)?shù)據(jù)狀態(tài)

    這篇文章主要給大家介紹了關(guān)于vue實現(xiàn)tab切換的3種方式及切換保持?jǐn)?shù)據(jù)狀態(tài)的相關(guān)資料,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2021-05-05
  • vue關(guān)于下載文件常用的幾種方式

    vue關(guān)于下載文件常用的幾種方式

    這篇文章主要介紹了vue關(guān)于下載文件常用的幾種方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-10-10
  • Vue動態(tài)綁定Class的幾種常用方式

    Vue動態(tài)綁定Class的幾種常用方式

    在vue框架開發(fā)中,有時候我們需要對元素的樣式進行動態(tài)控制,比如tab按鈕的切換,下面這篇文章主要給大家介紹了關(guān)于Vue動態(tài)綁定Class的幾種常用方式,需要的朋友可以參考下
    2023-03-03
  • vue axios post發(fā)送復(fù)雜對象問題

    vue axios post發(fā)送復(fù)雜對象問題

    現(xiàn)在vue項目中,一般使用axios發(fā)送請求去后臺拉取數(shù)據(jù)。這篇文章主要介紹了vue axios post發(fā)送復(fù)雜對象的一點思考,需要的朋友可以參考下
    2019-06-06
  • Vue點擊在彈窗外部實現(xiàn)一鍵關(guān)閉的示例代碼

    Vue點擊在彈窗外部實現(xiàn)一鍵關(guān)閉的示例代碼

    在Vue應(yīng)用中,彈窗是一個常見的交互元素,有時我們可能希望用戶點擊彈窗外部時,彈窗能夠自動關(guān)閉,本文主要介紹了Vue點擊在彈窗外部實現(xiàn)一鍵關(guān)閉的示例代碼,感興趣的可以了解一下
    2024-06-06

最新評論