Details.vue 208 B

12345678910111213
  1. <script>
  2. export default {
  3. props: {
  4. tab: { required: true },
  5. },
  6. render(h) {
  7. return h(this.tab.component, {
  8. props: this.tab.props || {},
  9. });
  10. },
  11. };
  12. </script>