mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
13 lines
368 B
JavaScript
Executable File
13 lines
368 B
JavaScript
Executable File
import BaseNav from '@/components/Navbar/BaseNav'
|
|
import { ValidationProvider, ValidationObserver } from 'vee-validate'
|
|
|
|
const GlobalComponents = {
|
|
install(Vue) {
|
|
Vue.component(BaseNav.name, BaseNav)
|
|
Vue.component('validation-provider', ValidationProvider)
|
|
Vue.component('validation-observer', ValidationObserver)
|
|
},
|
|
}
|
|
|
|
export default GlobalComponents
|