In my Vue.js application I want to have some global functions. For example a callApi()
function which I can call every time I need access to my data.
What is the best way to include these functions so I can access it in all my components?
- Should I create a file functions.js and include it in my main.js?
- Should I create a Mixin and include it in my main.js?
- Is there a better option?