23 lines
480 B
JavaScript
Executable File
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 }
|