Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Using vuex with he-tree-vue #25

Closed
Jasperscheper opened this issue Jul 1, 2020 · 2 comments
Closed

Using vuex with he-tree-vue #25

Jasperscheper opened this issue Jul 1, 2020 · 2 comments

Comments

@Jasperscheper
Copy link

I want to use vuex together with he-tree-vue.

We are now experiencing lots of vuex errors:
[vuex] do not mutate vuex store state outside mutation.

You made a function cloneTreeData for this purpose. However, you do not provide any examples as far as I know how to use it.
Can you show a example?

@phphe
Copy link
Owner

phphe commented Jul 1, 2020

try this

<template>
  <Tree v-if="treeData" :value="treeData" @change="onchange"></Tree>
</template>
<script>
import 'he-tree-vue/dist/he-tree-vue.css'
import {Tree, cloneTreeData} from 'he-tree-vue'

export default {
  components: {Tree},
  data() {
    return {
      treeData: null
    }
  },
  created() {
    this.treeData = cloneTreeData(this.$store.state.treeData)
  },
  methods: {
    onchange() {
      this.$store.commit('updateTreeData', cloneTreeData(this.treeData))
    },
  }
}
</script>

@Jasperscheper
Copy link
Author

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants