This commit is contained in:
xiaojibeier
2026-07-06 03:36:46 +08:00
parent 300b15aa9f
commit f3726f0810
506 changed files with 221985 additions and 1 deletions
+23
View File
@@ -0,0 +1,23 @@
import VabColorfulCard from './components/VabColorfulCard'
import VabCard from './components/VabCard'
import VabCount from './components/VabCount'
// 导入样式
import './styles/vab.scss'
const components = [
VabColorfulCard,
VabCard,
VabCount,
// 其他组件...
]
export default {
install(app) {
components.forEach(component => {
app.component(component.name, component)
})
}
}
export { VabColorfulCard, VabCard, VabCount }