I am new to vue.js and I want to call a method in the data so something like this:
data() {
return {
title: capitalizeFirstLetter('title'),
};
},
and my vue mixin which I imported to my main.js
Vue.mixin({
methods: {
capitalizeFirstLetter(str) {
return str.charAt(0).toUpperCase() + str.slice(1);
}
}
})
but this doesnt work, I cant call capitalizeFirstLetter in the data. Is it possible to call a method in data?