egoist / vue-client-only

Vue component to wrap non SSR friendly components (428 bytes)
MIT License
475 stars 37 forks source link

Support customize placeholder class #124

Open storyn26383 opened 2 years ago

storyn26383 commented 2 years ago

With this PR, we can customize placeholder class:

<client-only placeholder="loading" placeholder-class="my-placeholder-class">
  <comments />
</client-only>

And we will get:

<div class="my-placeholder-class">
  loading
</div>
iamandrewluca commented 2 years ago

I think you can achieve this using the simple class attribute 🤔

<client-only placeholder="loading" class="my-placeholder-class">
  <comments />
</client-only>
<div class="my-placeholder-class">
  loading
</div>