| 1234567891011121314151617 |
- import type { ComponentResolver } from '@uni-helper/vite-plugin-uni-components'
- import { kebabCase } from '@uni-helper/vite-plugin-uni-components'
- export function WotResolver(): ComponentResolver {
- return {
- type: 'component',
- resolve: (name: string) => {
- if (name.match(/^Wd[A-Z]/)) {
- const compName = kebabCase(name)
- return {
- name,
- from: `@wot-ui/ui/components/${compName}/${compName}.vue`,
- }
- }
- },
- }
- }
|