We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6760e9 commit 526a88dCopy full SHA for 526a88d
src/resolvers/index.ts
@@ -1,3 +1,4 @@
1
export * from './antdv'
2
export * from './element-plus'
3
export * from './vant'
4
+export * from './vuetify'
src/resolvers/vuetify.ts
@@ -0,0 +1,11 @@
+import { ComponentResolver } from '../types'
+
+/**
+ * Resolver for Vuetify
5
+ *
6
+ * @link https://github.com/vuetifyjs/vuetify
7
+ */
8
+export const VuetifyResolver = (): ComponentResolver => (name: string) => {
9
+ if (name.match(/^V[A-Z]/))
10
+ return { importName: name, path: 'vuetify/lib' }
11
+}
0 commit comments