ComponentOptionsComponentOptions Properties#effector#Returns(Function | Object | Store): Store or object of Store, or function which will be called with Component instance as thisExample#import Vue from 'vue'import {createStore} from 'effector' const counter = createStore(0) new Vue({ data() { return { foo: 'bar', } }, effector() { // would create `state` in template return combine( this.$store(() => this.foo), counter, (foo, counter) => `${foo} + ${counter}`, ) },})Copynew Vue({ effector: { counter, // would create `counter` in template },})Copynew Vue({ effector: counter, // would create `state` in template})Copy