Hey there! I'm diving into vue.js and I'm trying to figure out how to call a method in the data. Here's what I have so far:
data() {
return {
title: capitalizeFirstLetter('title'),
};
},
I also have a vue mixin that I've imported into my main.js file
Vue.mixin({
methods: {
capitalizeFirstLetter(str) {
return str.charAt(0).toUpperCase() + str.slice(1);
}
}
})
Unfortunately, when I try to call capitalizeFirstLetter
in the data section, it doesn't seem to work. Is it even possible to call a method within the data section?