Git Product home page Git Product logo

Comments (7)

christianmalek avatar christianmalek commented on May 28, 2024

Hi @elceka,

If you want to use modules just create the resources, then create the stores and pass them to the Vuex.Store constructor like this:

const postsResource= new Resource(/*...*/)
const usersResource = new Resouce(/*...*/)

const posts = createStore(postsResource)
const users = createStore(usersResource )

const store = new Vuex.Store({
  modules: {
    posts,
    users
  }
})

Namespacing

Like I wrote in the README, this little helper utility just creates the store object for you. There is no magic behind it. If you want namespaced modules, just pass the namespaced: true property:

const store = new Vuex.Store({
  modules: {
    Object.assign({namespaced: true}, posts)
    Object.assign({namespaced: true}, users)
  }
})

from vuex-rest-api.

christianmalek avatar christianmalek commented on May 28, 2024

I'll close this issue. If you have any further queustions don't hesitate to ask.

from vuex-rest-api.

Hobbs1210 avatar Hobbs1210 commented on May 28, 2024

Does the same method apply to 2.0 ?
Passing the created Vapi resource to vuex.store dose not seem to work.

from vuex-rest-api.

christianmalek avatar christianmalek commented on May 28, 2024

I can only answer you from my mobile Phone at the moment.

Did you call the Vapi.getStore() method? Please see step 4 in https://github.com/christianmalek/vuex-rest-api/blob/v2/README.md#steps

from vuex-rest-api.

Hobbs1210 avatar Hobbs1210 commented on May 28, 2024

Yes, getStore() is called. The module shows up under $store.state, but it's empty.

from vuex-rest-api.

christianmalek avatar christianmalek commented on May 28, 2024

I'll investigate this issue.

from vuex-rest-api.

christianmalek avatar christianmalek commented on May 28, 2024

I created a new issue. Please continue the discussion here: #24

from vuex-rest-api.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.