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