feat: 引入uv-ui 库
This commit is contained in:
parent
730504cd0e
commit
0a0246715d
@ -68,6 +68,7 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@climblee/uv-ui": "^1.1.20",
|
||||||
"@dcloudio/uni-app": "3.0.0-3090920231225001",
|
"@dcloudio/uni-app": "3.0.0-3090920231225001",
|
||||||
"@dcloudio/uni-app-plus": "3.0.0-3090920231225001",
|
"@dcloudio/uni-app-plus": "3.0.0-3090920231225001",
|
||||||
"@dcloudio/uni-components": "3.0.0-3090920231225001",
|
"@dcloudio/uni-components": "3.0.0-3090920231225001",
|
||||||
|
@ -12,6 +12,7 @@ export default defineUniPages({
|
|||||||
autoscan: true,
|
autoscan: true,
|
||||||
custom: {
|
custom: {
|
||||||
'^uni-(.*)': '@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue',
|
'^uni-(.*)': '@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue',
|
||||||
|
'^uv-(.*)': '@climblee/uv-ui/components/uv-$1/uv-$1.vue',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
506
pnpm-lock.yaml
generated
506
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -1,4 +1,5 @@
|
|||||||
import { createSSRApp } from 'vue'
|
import { createSSRApp } from 'vue'
|
||||||
|
import uvUI from '@climblee/uv-ui'
|
||||||
import App from './App.vue'
|
import App from './App.vue'
|
||||||
import store from './store'
|
import store from './store'
|
||||||
import i18n from './locale/index'
|
import i18n from './locale/index'
|
||||||
@ -7,7 +8,9 @@ import 'virtual:uno.css'
|
|||||||
|
|
||||||
export function createApp() {
|
export function createApp() {
|
||||||
const app = createSSRApp(App)
|
const app = createSSRApp(App)
|
||||||
app.use(store).use(i18n)
|
app.use(store)
|
||||||
|
app.use(i18n)
|
||||||
|
app.use(uvUI)
|
||||||
return {
|
return {
|
||||||
app,
|
app,
|
||||||
}
|
}
|
||||||
|
10
src/shime-uni.d.ts
vendored
10
src/shime-uni.d.ts
vendored
@ -2,5 +2,13 @@ export {}
|
|||||||
|
|
||||||
declare module 'vue' {
|
declare module 'vue' {
|
||||||
type Hooks = App.AppInstance & Page.PageInstance
|
type Hooks = App.AppInstance & Page.PageInstance
|
||||||
interface ComponentCustomOptions extends Hooks {}
|
interface ComponentCustomOptions extends Hooks {
|
||||||
|
$uv?: any
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
interface Uni {
|
||||||
|
$uv?: any
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user