Giter VIP home page Giter VIP logo

vue3-skeleton-loader's Introduction

v-skeleton

super simple skeleton component for Vue3, this component gives you just one div that has pre-defined styles (customizable with props)

Demo

demo

props

width: {
  type: String,
  default: "100%",
},
height: {
  type: [String, Number],
  default: "100%",
},
bgColor: {
  type: String,
  default: "rgba(0, 0, 0, 0.12)",
},
borderRadius: {
  type: String,
  default: "5px",
},
circle: {
  type: Boolean,
  default: false,
},
title: {
  type: String,
  default: "",
},
placeText: {
  type: String,
  default: "center",
},
placeItems: {
  type: String,
  default: "center",
},
textRotation: {
  type: String,
  default: "0deg",
},
textColor: {
  type: String,
  default: "rgba(0, 0, 0, 0.2)",
},
textFont: {
  type: String,
  default: "inherit",
},
textFontSize: {
  type: String,
  default: "1.5em",
},

Example usages

import component from node modules

<script setup>import vSkeleton from '@bch_/v-skeleton'</script>

then

<template>
  <v-skeleton class="min-h-[500px] min-w-sm" />
  <v-skeleton width="300px" height="400px" />
  <v-skeleton
    width="300px"
    height="300px"
    title="MY-SITE.COM"
    placeItems="center"
    textRotation="45deg"
  />
</template>

Optional

if you have errors with your code editor/IDE when using typescript, consider adding the following to .d.ts file

declare module "@bch_/v-skeleton";

vue3-skeleton-loader's People

Contributors

thssuck avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.