I am trying to use a Vue.js plugin inside of a Vuex Store module.
In a component, I am able to call it like this: this.$plugin(). However, in a module, this is not set. I thought Vue.$plugin() would work since I initialize the plugin with Vue.use(plugin) and Vue being a global variable, but it doesn't.
How do I reference the plugin from a module?