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?
Advertisement
Answer
Your best bet would be a Plugin, which lets you add features to the global vue system.
[from the vuejs Docs]
JavaScript
x
13
13
1
MyPlugin.install = function (Vue, options) {
2
3
// 1. add global method or property
4
Vue.myGlobalMethod =
5
6
// 2. add a global asset
7
Vue.directive('my-directive', {})
8
9
// 3. add an instance method
10
Vue.prototype.$myMethod =
11
12
}
13
Then you would just add
JavaScript
1
2
1
Vue.use(MyPlugin)
2
in your code before calling your function.
JavaScript
1
2
1
Vue.myGlobalMethod(parameters);
2
or in your case
JavaScript
1
2
1
Vue.callApi(parameters);
2