When using the vueify package, is there a way I can include a directive inside my SomeComponent.vue
file? It's a directive used only for that component. I tried including it inside the script tags outside the export default { ... }
but it doesn't seem to work.
Am I stuck having all the directives in my main app.js file where I create the Vue instance?