mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-23 14:15:13 +00:00
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
import { installModule, useNuxt } from '@nuxt/kit'
|
|
import * as CompositionApi from '@vue/composition-api'
|
|
import autoImports from '../../nuxt3/src/auto-imports/module'
|
|
|
|
const UnsupportedImports = new Set(['useAsyncData', 'useFetch'])
|
|
const CapiHelpers = new Set(Object.keys(CompositionApi))
|
|
|
|
const ImportRewrites = {
|
|
vue: '@vue/composition-api'
|
|
}
|
|
|
|
export async function setupAutoImports () {
|
|
const nuxt = useNuxt()
|
|
|
|
nuxt.hook('autoImports:extend', (autoImports) => {
|
|
for (const autoImport of autoImports) {
|
|
// Rewrite imports
|
|
if (autoImport.from in ImportRewrites) {
|
|
autoImport.from = ImportRewrites[autoImport.from]
|
|
}
|
|
// Disable unsupported imports
|
|
if (UnsupportedImports.has(autoImport.name)) {
|
|
autoImport.disabled = true
|
|
}
|
|
if (autoImport.from === '@vue/composition-api' && !CapiHelpers.has(autoImport.name)) {
|
|
autoImport.disabled = true
|
|
}
|
|
}
|
|
|
|
// Add auto-imports that are added by ad-hoc modules in nuxt 3
|
|
autoImports.push({ name: 'useRouter', as: 'useRouter', from: '#app' })
|
|
autoImports.push({ name: 'useRoute', as: 'useRoute', from: '#app' })
|
|
|
|
// Add bridge-only auto-imports
|
|
autoImports.push({ name: 'useNuxt2Meta', as: 'useNuxt2Meta', from: '#app' })
|
|
})
|
|
|
|
await installModule(autoImports)
|
|
}
|