관리-도구
편집 파일: Details.vue
<script> export default { props: { tab: { required: true }, }, render(h) { return h(this.tab.component, { props: this.tab.props || {}, }); }, }; </script>