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

2c4ba4912c97489515de1e78a208e0954eef3e37.svn-base 285B

5 달 전
12345678910111213141516
  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>