I have working example from official site.
computed: { filteredData: function () {} )
How to get filteredData (computed property) globally? Espiccially if I want to send it somewhere else. demo.$store contains only original properties, not computed. I see the only way to achieve this is demo.$children[0].filteredData. But that is not pure. By the way, im using vuex.