Skip to content

Instantly share code, notes, and snippets.

@kyuwoo-choi
Created January 20, 2020 08:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kyuwoo-choi/a768dae55c904bbe1b325857ff06cdff to your computer and use it in GitHub Desktop.
Save kyuwoo-choi/a768dae55c904bbe1b325857ff06cdff to your computer and use it in GitHub Desktop.
Vue.js Carousels: SSR Support And Performance
<div class="carousel-wrapper">
<!---->
</div>
<div class="carousel-wrapper">
<client-only>
<agile :options="options">
<div v-for="i in 5" :key="i" class="img-wrapper">
<img :src="`./${i}-200x100.jpg`" />
</div>
</agile>
</client-only>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment