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.
|
import Message from "./components/Message"
|
|
import Select from './components/Select/Select'
|
|
|
|
const components = [Select]
|
|
|
|
export default function (Vue) {
|
|
components.forEach(component => {
|
|
Vue.component(component.name, component)
|
|
})
|
|
|
|
Vue.prototype.$message = Message
|
|
}
|
|
|