Skip to content

Instantly share code, notes, and snippets.

@cristijora
Created July 11, 2019 18:22
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 cristijora/f5cef0e108a5e3ca7eac51531dfc34f1 to your computer and use it in GitHub Desktop.
Save cristijora/f5cef0e108a5e3ca7eac51531dfc34f1 to your computer and use it in GitHub Desktop.
// Dropdown.vue (parent)
<template>
<div>
<button @click="showMenu = !showMenu">Click me</button>
<transition name="fade">
<dropdown-menu v-if="showMenu" :items="items"></dropdown-menu>
</dropdown-menu>
</div>
<template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment