当前位置:   article > 正文

vue3 配置自动导入API和组件_vue3自动补全 引入组件

vue3自动补全 引入组件
1. vue3 自动导入

原理 :

  • 预加载前,该插件自动 按需导入 了,在本vue文件中使用 api组件
  • 编写代码 的时候,就无需 import
  • 注意并不是全局导入,并不会影响到资源


2. API 的 自动引入 尤雨溪 推荐神器)

Ⅰ、使用前后对比
使用插件前:

<script setup>
	import { ref } from "@vue/reactivity";
	import { useRouter } from "vue-router";
	const router = useRouter();
	const name = ref('张三');
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

使用插件后:

<script setup>
	const router = useRouter();
	const name = ref('张三');
</script>
  • 1
  • 2
  • 3
  • 4

Ⅱ、安装三方件

npm i -D unplugin-auto-import

Ⅲ、配置三方件
vite.config 配置:

import { defineConfig } from "vite"; 
import AutoImport from 'unplugin-auto-import/vite'

export default defineConfig({
  plugins: [
    AutoImport({ imports: ['vue', 'vue-router'] }),
  ]
  //.........
})
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

不仅次于vue 和 路由,同时也可以在 imports 数组中加入其它的三方件


3. 组件的自动引入 尤雨溪 推荐神器)

Ⅰ、使用前后对比
使用插件前:

<template>
  <div class="main">
    <Aside />
    <Footer />
  </div>
</template>
<script setup>
	import 	Aside from '/@/components/Aside.vue'
	import Footer from '/@/components/Footer.vue'
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

使用插件后:(可选择按导入的文件夹)

<template>
  <div class="main">
    <Aside />
    <Footer />
  </div>
</template>
<script setup></script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

Ⅱ、安装三方件

npm i -D unplugin-vue-components

  • 既可以设置按需导入的组件,也可以设置 按需导入 UI框架 (如: element plus 、 Antd …)

Ⅲ、配置三方件

import { defineConfig } from "vite"; 

import Components from 'unplugin-vue-components/vite' // 按需加载自定义组件
import { ElementPlusResolver, AntDesignVueResolver} from 'unplugin-vue-components/resolvers'
export default defineConfig {
  plugins: [
    Components({
      dts: true,
      dirs: ['src/components'], // 按需加载的文件夹
      resolvers: [
          ElementPlusResolver(),  // Antd   按需加载
          AntDesignVueResolver()  // ElementPlus按需加载
     ] 
    })
  ],
  // ..................................
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • dirs 属性:设置自动加载 组件的文件夹 , 默认为 ’ /src/component '
  • resolvers属性 :设置 UI 框架 自动加载 , 注意不要向 main.js导入UI 框架
  • 同时打包时 ,用多少UI组件打包多少
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/86263
推荐阅读
相关标签
  

闽ICP备14008679号