computed: {
processedHtml: function () {
this.dropdown.forEach(function(item, name){
// Here I'm trying to get access to property "content" of my component
window.console.log(this.content);
})
return {...}
}
}