index.js 221 B

123456789101112131415
  1. import {Row, Col} from './_flex';
  2. import './flex.scss';
  3. Row.install = function(Vue) {
  4. Vue.component(Flex.name, Row);
  5. };
  6. Col.install = function(Vue) {
  7. Vue.component(Flex.name, Col);
  8. };
  9. export default {
  10. Row,
  11. Col
  12. };