lukaszflorczak / vue-agile

🎠 A carousel component for Vue.js
https://lukaszflorczak.github.io/vue-agile/
MIT License
1.49k stars 167 forks source link

Vue warning - "Duplicate presence of slot "default" found in the same render tree - this will likely cause render errors." #106

Closed Kovbo closed 5 years ago

Kovbo commented 5 years ago

Hello, please help me to solve the issue with this component.

I'm constantly receiving Vue warning after adding basic carousel code into the main component.

<div id="app">
<agile>
  <div>slide 1</div>
  <div>slide 2</div>
</agile>
</div>

[Vue warn]: Duplicate presence of slot "default" found in the same render tree - this will likely cause render errors.

found in

---> at node_modules/vue-agile/src/Agile.vue

Nesuarg commented 5 years ago

Try update vue to latest version, as I remember when having the same issue, it was something with the multiple non named slot, not being supported in older vue versions.

Kovbo commented 5 years ago

Try update vue to latest version, as I remember when having the same issue, it was something with the multiple non named slot, not being supported in older vue versions.

Yeah, you were right! Just updated Vue, and the error disappeared. Now everything works perfectly, thank you so much!