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

error h.transition #31

Closed
fontainio opened this issue Oct 14, 2018 · 4 comments
Closed

error h.transition #31

fontainio opened this issue Oct 14, 2018 · 4 comments

Comments

@fontainio
Copy link

Hi
i know a previous ticket was opened about this, but was close without explanation.
I have the same issue.
i'm using yarn.

screen shot 2018-10-14 at 1 21 19 pm

@fontainio
Copy link
Author

you can inspect the error here https://fontain.io/tree

@fontainio
Copy link
Author

fontainio commented Oct 14, 2018

<template>
  <div id="container">
  <tree :data="tree" :node-text="name" layoutType="circular" class="tree"></tree></div>
</template>

<script>
import {tree} from 'vued3tree'

export default {
  components: {
    tree
  },
  data() {
    return {
      tree: {
        name: "father",
        children:[{
          name: "son1",
          children:[ {name: "grandson"}, {name: "grandson2"}]
        },{
          name: "son2",
          children:[ {name: "grandson3"}, {name: "grandson4"}]
        }]
      }
    }
  }
}

</script>

<style >
.tree {
    width: 100%;
    height: 100%;
}
.container{
    width: 500px;
    height: 500px;;
}
</style>

@David-Desmaisons
Copy link
Owner

Could you share what was the problem to avoid someone else open a similar issue later, and so on?

@jjstobbe
Copy link

I had the same problem. Seems to be some sort of yarn issue. I installed it normally using npm install and re-ran my project and it worked fine. For whatever reason, just using yarn add vued3tree doesn't work.

@xserber xserber mentioned this issue Dec 29, 2018
Closed
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

3 participants