Skip to content

Instantly share code, notes, and snippets.

@cagcak
Last active September 29, 2019 10:05
Show Gist options
  • Save cagcak/8637feeb04dcc4839a8a624d9e20add3 to your computer and use it in GitHub Desktop.
Save cagcak/8637feeb04dcc4839a8a624d9e20add3 to your computer and use it in GitHub Desktop.
import Vue from 'vue'
import AboutModal from './components/AboutModal'
const Components = {
AboutModal
}
Object.keys(Components).forEach(name => {
Vue.component(name, Components[name])
})
export default Components
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment