Scope.vue 407 B

12345678910111213141516171819202122
  1. <template>
  2. <ssh-proxy-match-list
  3. :id="id"
  4. :proxyEndpointId="resId"
  5. :getParams="getParams" />
  6. </template>
  7. <script>
  8. import SshProxyMatchList from '@Network/views/ssh-proxy-match/components/List'
  9. export default {
  10. name: 'SshProxyScopeSidePage',
  11. components: {
  12. SshProxyMatchList,
  13. },
  14. props: {
  15. id: String,
  16. resId: String,
  17. getParams: [Function, Object],
  18. },
  19. }
  20. </script>