当前位置:   article > 正文

vue3自动引入ref,reactive等api_vscode 自动导入ref 的插件

vscode 自动导入ref 的插件

 前提摘要,我的项目是使用vue3+vite+Eslint搭建的

  1. import { reactive, ref } from 'vue'
  2. const account = reactive({
  3. username: '',
  4. password: ''
  5. })
  6. let number= ref(1)

在定义变量的时候,要手动引入import { reactive, ref } from 'vue'

为了不用手动引入,方便开发,我们可以下载插件 

yarn add unplugin-auto-import

 vite.config.js中配置

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

保存之后,项目会生成一个文件夹.eslintrc-auto-import.json

我配置了Eslint,在.eslintrc.cjs中配置

  1. module.exports = {
  2. extends: [
  3. './.eslintrc-auto-import.json',
  4. ],
  5. }

最后一步啦,试试把import { reactive, ref } from 'vue'去掉看看效果吧

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/213586
推荐阅读
相关标签
  

闽ICP备14008679号