ReCast is a multi platform restreaming tool, you can stream with one servers to multiple services
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
404 B

import fgInput from './components/UIComponents/Inputs/formGroupInput.vue'
import DropDown from './components/UIComponents/Dropdown.vue'
/**
* You can register global components here and use them as a plugin in your main Vue instance
*/
const GlobalComponents = {
install (Vue) {
Vue.component('fg-input', fgInput)
Vue.component('drop-down', DropDown)
}
}
export default GlobalComponents