plugin-vue_export-helper.mjs 248 B

12345678910
  1. var _export_sfc = (sfc, props) => {
  2. const target = sfc.__vccOpts || sfc;
  3. for (const [key, val] of props) {
  4. target[key] = val;
  5. }
  6. return target;
  7. };
  8. export { _export_sfc as default };
  9. //# sourceMappingURL=plugin-vue_export-helper.mjs.map