Anthony Gore
Anthony Gore
Another solution is to wrap the array in a computed property and add an id ``` computed: { myArrayWithId() { return this.myArray.map((item, index) => { item.id = index return item...
Good point. Maybe the ID could be based on some intrinsic property rather than the array index, for example, a JSON string of the object? ``` computed: { myArrayWithId() {...
I had this issue in a Vue app when I was conditionally showing a filepond instance in compact mode. Solution was to use `v-if` instead of `v-show` i.e. re-rendering rather...
This would definitely be an improvement if it can be achieved.
Issue #4 Also, adding babel-cli for people who don't have it globally installed.
I think this tool assumes the line numbers will be in the VTT file. I'm creating a PR to fix it.
Still not working, sorry. When I have some time I'll try and fix it.
What version of Node are you using?
Works fine for me. Here are the commands I used: ``` npm run build -- --wc ``` Then server the dist directory and it works
Can you tell me the commands you are running and what is happening?