Navigation

    Monaca & Onsen UI
    • Register
    • Login
    • Search
    • Tags
    • Users
    • Blog
    • Playground
    1. Home
    2. webcrazy
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups
    Save
    Saving

    webcrazy

    @webcrazy

    0
    Reputation
    2
    Posts
    356
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    webcrazy Follow

    Posts made by webcrazy

    • RE: onsenui + vuex ( Do not mutate vuex store state outside mutation handlers )

      I got it.

      It’s because of wrong installation style of vuex.

      Wrong

      new Vue({
          store,
          render: h => h(App),
      }).$mount('#app')
      

      Correct

      new Vue({
          render: h => h(App),
          store: store,
      }).$mount('#app')
      
      posted in Onsen UI
      webcrazy
    • onsenui + vuex ( Do not mutate vuex store state outside mutation handlers )

      Hi

      I followed the code from [ Onsen UI for Vue Kitchensink example ]. I keep getting this and couldn’t solve for few days. I already read many questions on the internet.

      Here’s my source code on github.

      Thanks a lot for your time.

      posted in Onsen UI
      webcrazy