UNPKG

scatter-styles

Version:

GetScatter Ltd. standard styles for use in internal and external projects. Better to standardize than to fracture.

14 lines (11 loc) 282 B
import Vue from "vue"; import HelloWorld from "./HelloWorld.vue" import DevelopedBy from "./DevelopedBy.vue" const Components = { HelloWorld, DevelopedBy } Object.keys(Components).forEach(name => { Vue.component(name, Components[name]); }); export default Components;