Composable components for rendering fake (progressive) content like facebook in vue
Vue addon for rendering fake content while data is fetching to provide better UX and lower bounce rate.
npm install vue-content-placeholders --save
yarn add vue-content-placeholders
Include plugin in your main.js
file.
import Vue from 'vue'
import VueContentPlaceholders from 'vue-content-placeholders'
Vue.use(VueContentPlaceholders)
⚠️ A css file is included when importing the package. You may have to setup your bundler to embed the css in your page.
<content-placeholders>
<content-placeholders-heading :img="true" ></content-placeholders-heading>
<content-placeholders-text :lines="3" ></content-placeholders-text>
</content-placeholders>
<content-placeholders :rounded="true">
<content-placeholders-img ></content-placeholders-img>
<content-placeholders-heading ></content-placeholders-heading>
</content-placeholders>
<content-placeholders>
animated
(default: true)rounded
(default: false) - border radiuscentered
(default: false)these properties define how all children components will act
<content-placeholders-heading ></content-placeholders-heading>
img
(default: false)<content-placeholders-text ></content-placeholders-text>
lines
(default: 4)<content-placeholders-img ></content-placeholders-img>
See the LICENSE file for license rights and limitations (MIT).