create.js 163 B

123456789
  1. /**
  2. * Create a component with common options
  3. */
  4. import createBasic from './create-basic';
  5. export default function(sfc) {
  6. return createBasic(sfc);
  7. }