index.js 151 Bytes
Newer Older
1 2 3 4 5 6 7
import ListLayout from './ListLayout.vue';

ListLayout.install = Vue => {
  Vue.component(ListLayout.name, ListLayout);
};

export default ListLayout;