Skip to content

Instantly share code, notes, and snippets.

@ramsaylanier
Created December 14, 2017 15:15
Show Gist options
  • Select an option

  • Save ramsaylanier/bfd55ff17961995abcd345d6dd60523d to your computer and use it in GitHub Desktop.

Select an option

Save ramsaylanier/bfd55ff17961995abcd345d6dd60523d to your computer and use it in GitHub Desktop.
<template>
<div>
<slot :menuItems="menus.items">
</slot>
</div>
</template>
<script>
import MenuQuery from './menu.gql'
export default {
name: 'menu-container',
props: ['menuName'],
data () {
return {
menus: {}
}
},
apollo: {
menus () {
return {
query: MenuQuery,
variables: {
menu: this.menuName
}
}
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment