mirror of
https://gitee.com/fantastic-admin/basic.git
synced 2024-12-04 21:18:16 +08:00
10 lines
240 B
TypeScript
10 lines
240 B
TypeScript
|
import components from 'unplugin-vue-components/vite'
|
||
|
|
||
|
export default function createComponents() {
|
||
|
return components({
|
||
|
dirs: ['src/components'],
|
||
|
include: [/\.vue$/, /\.vue\?vue/, /\.tsx$/],
|
||
|
dts: 'src/components.d.ts',
|
||
|
})
|
||
|
}
|