@egjs Flicking plugin for Vue. Not working adaptive #694
Unanswered
danilpon98
asked this question in
Q&A
Replies: 2 comments 1 reply
|
Hello @danilpon98. This seems to be an error in |
1 reply
|
We have released a new version(v4.9.1) that fixes this issue. Also, in your example, it seems that the height of each panel element inside Flicking should have a height that will change. Before - Each panel had another panel of its own height inside it. <flicking :options="options">
<div v-for="(panel, i) in panels" :key="i">
<div class="panel">{{ panel }}</div>
</div>
</flicking>After - Height of the contents in the panel are correctly applied to the panel. <flicking :options="options" ref="flicking">
<div class="panel" v-for="(panel, i) in panels" :key="i">
{{ panel }}
</div>
</flicking>You can check this similar implementation demo. Thank you for your patience. It would be nice if this could be resolved. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hi, everybody. I'm using the "@egjs/flicking" plugin for a Vue 2 project. I have a slider with different panel heights. I want the height of my slider to adapt to the largest size of the panels that are in the field of view. Please tell me how I can do this?
Live Demo
All reactions