DebugEvent.vue 306 B

1234567891011121314
  1. <script>
  2. export default {
  3. props: ['event'],
  4. render(h) {
  5. return h(require(`./Events/${this.event.getComponentName()}.vue`).default, {
  6. props: { event: this.event },
  7. attrs: {
  8. class: 'tab-content-section',
  9. },
  10. });
  11. },
  12. };
  13. </script>