Rap 原分销系统代码Web
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
285B

  1. <template>
  2. <elFrame :src="swaggerApi" />
  3. </template>
  4. <script>
  5. import { mapGetters } from 'vuex'
  6. import elFrame from '@/components/Iframe/index'
  7. export default {
  8. name: 'Swagger',
  9. components: { elFrame },
  10. computed: {
  11. ...mapGetters([
  12. 'swaggerApi'
  13. ])
  14. }
  15. }
  16. </script>