Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. path: src/views/Search.vue
  2. <template>
  3. <TrendingRepo :searchString="language"/>
  4. </template>
  5.  
  6. <script>
  7.  
  8. import TrendingRepo from '../components/TrendingRepo'
  9.  
  10. export default {
  11. props: ['language'],
  12. components: {
  13. TrendingRepo
  14. }
  15. }
  16. </script>
  17.  
  18. <style>
  19.  
  20. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement