vite中正确使用unplugin-auto-import实现自动引入vue相关依赖
前言unplugin-auto-import这个插件用于解决在书写组件时,总是需要从vue中import引入相同依赖的重复劳动。import { computed, ref } from 'vue' const count = ref(0) const doubled = computed(() => count.value * 2)使用自动引入后就不需要手动一个个importconst count = ref(0) const doubled = computed(() => count.value * 2)对于想偷懒的人来说,还是挺不错的。插件会在代...
最近评论