Files
weihai_erp/library/index.js
T
xiaojibeier f3726f0810 first
2026-07-06 03:36:46 +08:00

23 lines
480 B
JavaScript
Executable File

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 }