'init'
This commit is contained in:
27
mp-sc-frontend/wot-ui-resolver.ts
Normal file
27
mp-sc-frontend/wot-ui-resolver.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
import type { ComponentResolver } from '@uni-helper/vite-plugin-uni-components'
|
||||
import { kebabCase } from '@uni-helper/vite-plugin-uni-components'
|
||||
|
||||
/**
|
||||
* npm 安装的 Wot UI 组件在 H5 端需通过 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`,
|
||||
}
|
||||
}
|
||||
if (name.startsWith('wd-')) {
|
||||
return {
|
||||
name,
|
||||
from: `@wot-ui/ui/components/${name}/${name}.vue`,
|
||||
}
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user