Skip to content

Instantly share code, notes, and snippets.

@anoobbava
Created July 9, 2019 09:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anoobbava/6ae8eac543256b992b62392b1b154024 to your computer and use it in GitHub Desktop.
Save anoobbava/6ae8eac543256b992b62392b1b154024 to your computer and use it in GitHub Desktop.
github graphql Search vue
path: src/views/Search.vue
<template>
<TrendingRepo :searchString="language"/>
</template>
<script>
import TrendingRepo from '../components/TrendingRepo'
export default {
props: ['language'],
components: {
TrendingRepo
}
}
</script>
<style>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment