likes
comments
collection
share

Vite 的插件机制:插件应用和基本使用Vite 对于开发者如此友好又这么强大,而我现在的项目还在使用传统的方式开发,灰

作者站长头像
站长
· 阅读数 25

前几篇内容可查看专栏“前端工程化”,欢迎订阅~

Vite 功能概览

功能| cn.vitejs.dev/guide/featu…

  • CSS 支持

CSS Modules

src\assets\style.css:

.red{
  color: rosybrown;
}

\src\components\Css.vue:

<template>
  <hr />
  <h2>CSS支持</h2>
  <pclass="red">引入外部CSS文件</p>
  <pclass="bule">自己的 CSS 代码</p>
</template>

<script>
export default {};
</script>

<style>
@import ".
./assets/style" ;
.bule {
  color: blue;
}
</style>
  • sass预处理器

Vite 也同时提供了对 .scss, .sass, .less, .styl 和 .stylus 文件的内置支持。没有必要为他们安装特定的 vite 插件,但相应的预处理器依赖本身必须安装

src\assets\style.sass:

$bg: red
.li
  color: $bg

src\components\Users.vue:

<stylelang="sass">
// 导入 CSS(sass) 文件
@import'../assets/style'
$blues: blue
ul
  li
    color: $blues
.lis
  color: $blues
</style>
  • JSON

JSON 可以被直接导入 - 同样支持具名导入:

<template>
  <hr />
  <h2>CSS支持</h2>
  <pclass="red">引入外部CSS文件</p>
  <pclass="bule">自己的 CSS 代码</p>
  <h3>获取 json 文件数据:</h3>
  <pv-for=" i in users" :key="i.id">
    {{i.username}}
  </p>
</template>

<script>
import datas from '../assets/data.json'
export default {
  data(){
    return {
     users:datas
    }
  },
  mounted(){
   console.log(datas)
  }
};
</script>

<style>
@import "../assets/style" ;
.bule {
  color: blue;
}
</style>
  • 路由

安装路由模块

npm install vue-router@4

\src\main.js:

import {createApp } from'vue'
import App from'./App.vue'
import router from'./router'

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

\src\router\index.js:

import  { createRouter, createWebHistory }  from'vue-router'
import Hello from'../components/HelloWorld.vue'

const routes = [
  {
    path:'/',
    name:'Hello',
    component: Hello
  },
  {
    path:'/about',
    name:'About',
    component: () =>import('../components/About.vue')
  }
]

exportdefaultcreateRouter({
  history:createWebHistory(),
  routes
})

\src\App.vue

<template>
  <imgalt="Vue logo" src="./assets/logo.png" />
 <router-view/>
</template>
  • 配置选项

    npm install element-plus --save

Vite 的插件应用

使用插件:cn.vitejs.dev/guide/using…

因为 Vite 依赖于 Rollup ,这意味着 Vite 可以利用 Rollup 插件的强大生态系统。很多功能性的支持,在 Rollup 项目中需要添加插件,而在 Vite 为了能够提供开箱即用的体验,已经内建支持了。在前面的功能概览讲解中,我们已经看到了,你可以具体去看:cn.vitejs.dev/guide/featu…

除此之外,官方也提供了一系列插件,比如 Vue 3 单文件组件的解析插件:@vitejs/plugin-vue。在初始化项目完成后,在配置文件 Vite.config.js 的默认配置中就能看到:

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'

// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()]
})

而如果使用 Vite 构建一个 React 项目,同样在配置文件中,能够看到对 React 代码支持的插件被引入使用:

import { defineConfig } from 'vite'
import reactRefresh from '@vitejs/plugin-react-refresh'

// https://vitejs.dev/config/
export default defineConfig({
plugins: [reactRefresh()]
})

这里也额外插一句,前面说过,在构建项目时,你可以通过在命令行添加指定模板的方式,构建不同框架模板的项目。官方提供了很多模板,而社区提供了更多的模板类型。比如很多小伙伴想使用 Vite 开发 Vue2 的项目,就可以到社区模板中,找到对应的模板,社区模板列表:github.com/vitejs/awes…

Vite 的插件机制:插件应用和基本使用Vite 对于开发者如此友好又这么强大,而我现在的项目还在使用传统的方式开发,灰

我们以 vite-vue2-starter 模板为例,找到具体的模板以后,我们就可以使用 degit:github.com/Rich-Harris… 之类的工具,使用社区模版来搭建项目了,具体操作如下:

npx degit matt-auckland/vite-vue2-starter  myvitevue2

项目搭建搭建成功后,我们打开配置文件 Vite.config.js ,其中默认配置中能够看到,依然使用了插件来解析 Vue2 代码的代码,使其能够正常运行:

const { createVuePlugin } = require('vite-plugin-vue2');

module.exports = {
plugins: [createVuePlugin()],
};

说到底,Vite 之所以能够构建不同框架的项目,就是依赖于插件机制的。除此之外,我们还可以使用插件,在开发阶段或打包阶段完成不同的需求。

插件的基本使用

低版本浏览器兼容插件

比如,Vite 构建的项目,打包默认依然使用 ES 模块化,即便是 Vue2 开发的项目也是一样,如果想让项目运行在 IE11 这样的低版本浏览器中,可以按下面这样,使用官方插件 @vitejs/plugin-legacy,打包后的结果是不需要插件功能的。因此,使用开发依赖安装插件:

$ npm i @vitejs/plugin-legacy  -D

安装完成后,在配置文件 vite.config.js 中,引入并使用插件:

// vite.config.js
import legacy from '@vitejs/plugin-legacy'

export default {
  plugins: [
    legacy({
      targets: ['ie >= 11'],
      additionalLegacyPolyfills: ['regenerator-runtime/runtime']
    })
  ]
}

如果你对 Rollup 比较熟悉,你会发现,Vite 中插件的使用规则就是 Rollup 的插件使用规则

此时,我们就可以使用 npm run build 打包项目了,使用插件打包和不使用插件打包,结果具有非常明显的差异

官方提供的插件并不多,插件:cn.vitejs.dev/plugins/,我们…](github.com/vitejs/awes…)

MarkDown 解析插件

现在我有个需求,解析 md 文档并展示,可以使用 vite-plugin-md

安装插件:

npm ivite-plugin-md -D

\vite.config.js , 引入并使用插件:

import Vue from '@vitejs/plugin-vue'
import Markdown from 'vite-plugin-md'

export default {
  plugins: [
    Vue({
      include: [/\.vue$/, /\.md$/],
    }),
    Markdown()
  ],
}

Vite 的插件机制:插件应用和基本使用Vite 对于开发者如此友好又这么强大,而我现在的项目还在使用传统的方式开发,灰

<template>
  <Md />
</template>

<script>
import Md from './Md.md'

export default {
  components: {
    Md,
  },
}
</script>

对于 Vite 的基本用法,到这里也就差不多了。那么 Vite 对于开发者如此友好又这么强大,而我现在的项目还在使用传统的方式开发,灰常不开森,我能在传统项目中使用 Vite 吗?如果你刚认识 Vite,第一感觉好像不太可能,但是,当你真正认识了 Vite,又有什么不可能呢,其实,嗖易贼啦~~

先找一个基于 vue-cli 搭建的项目,然后就……

洗洗睡吧,哈哈哈,想什么呢……

转载自:https://juejin.cn/post/6979499956533100557
评论
请登录