0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

vue3 element plus で skelton

Posted at

vue3 で skelton を利用したい。

hoge.vue
<el-skeleton :rows="5" animated />

高さを指定する場合は、以下のようにする

hoge.css
<style>

.custom-skeleton .el-skeleton__item {
    height: 1.5em;
}

.custom-skeleton-200 .el-skeleton__item {
    width: 200px;
}

</style>


で、使う場合は

<el-skeleton class="custom-skeleton" :rows="0" animated></el-skeleton>

これで、高さ1.5emのスケルトンが出来上がる。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?