You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
295 B
15 lines
295 B
import * as componets from "./components"
|
|
|
|
export * from "./components"
|
|
|
|
function install(app) {
|
|
for (const key in componets) {
|
|
const component = componets[key]
|
|
app.component(component.name || "ps-" + key, component)
|
|
}
|
|
}
|
|
|
|
export { install }
|
|
export default {
|
|
install
|
|
}
|