9 lines
159 B
JavaScript
9 lines
159 B
JavaScript
|
import Footer from './src/main';
|
||
|
|
||
|
/* istanbul ignore next */
|
||
|
Footer.install = function(Vue) {
|
||
|
Vue.component(Footer.name, Footer);
|
||
|
};
|
||
|
|
||
|
export default Footer;
|