const store = reactive({
a: [],
b: computed(()=> a.find('needle')), use computed
c: ()=> a.find('needle') // or a method
})
How should one go about using a computed property in a reactive store object?
I suppose the best practice is probably not setting the computed property in the reactive object? But would this work?