xm-law-team-detail.vue 465 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div></div>
  3. </template>
  4. <script>
  5. import components from './_import-components/xm-law-team-detail-import'
  6. export const metaInfo = {
  7. name: '法律顾问-查看详情',
  8. order: 100,
  9. }
  10. export default {
  11. name: 'XmLawTeamDetail',
  12. components,
  13. props: {
  14. dataSource: {
  15. type: Object,
  16. default: () => {},
  17. },
  18. },
  19. data() {
  20. return {}
  21. },
  22. methods: {},
  23. }
  24. </script>
  25. <style module lang="scss">
  26. @use '@/common/design' as *;
  27. </style>