123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- import AutoImport from 'unplugin-auto-import/vite'
- export const autoImportPlugin = () => {
- return AutoImport({
- include: [
- /\.[tj]sx?$/,
- /\.vue$/,
- /\.vue\?vue/,
- /\.md$/
- ],
- imports: [
-
- 'vue',
- 'vue-router',
- 'pinia',
-
- {
- '/@/hooks/web/useMessage': ['useMessage'],
- '/@/utils/file/image': ['getAssetsImageUrl', 'getRelativeImageUrl']
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
-
-
-
-
-
-
- ],
- vueTemplate: true,
- eslintrc: {
- enabled: true,
- globalsPropValue: true
- }
-
-
- })
- }
|