Level 37
So a couple of problems.
- 'bind' will only execute your code once. So your event listener will be basically useless. You need 'inserted'.
- Make sure that your container div is not "covered" by any other div, or your click event will never get fired.
- Remove the quotes from the directive name.
- There is a different syntax for directives when using a component and when defining them globally. Check the documenatation: https://vuejs.org/v2/guide/custom-directive.html

