1.2.1 • Published 4 years ago

vue-splash v1.2.1

Weekly downloads
81
License
MIT
Repository
github
Last release
4 years ago

Vue Splash

Splash Your App Logo 💦

show the splash, until your app is loaded...

Demo

see demo

Installation

npm i vue-splash

Usage

Plugin install:

import Vue from 'vue';
import VueSplash from 'vue-splash';

Vue.use(VueSplash);

Import in template:

<template>
  <vue-splash
    :show="true"
    :logo="logo"
    title="Your Magnificent App Name"
    color="#00bfa5"
    :size="300"
    :fixed="true"
  />
</template>

<script>
import YourLogo from "<Your Magnificent Logo Path>";

export default {
  name: "YourMagnificentVueComponent",
  computed: {
    logo() {
      return YourLogo;
    }
  }
}
</script>

Props

nametypedefaultdescription
showBooleantruedecide to show component
logoStringhttps://svgshare.com/i/NRE.svgimage source to load your logo
titleStringYour Magnificent App Namedefine app name
custom-textStringwrite your custom text or html instead of title prop
colorString#00bfa5define splash color
sizeString, Number180define splash logo size (px)
fixedBooleantruefixed to full screen
background-colorStringset background color (it works if the "fixed" property is set to true)

License

This project is licensed under the MIT License - see the LICENSE file for details.

1.2.0

4 years ago

1.2.1

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

1.0.0-alpha2

4 years ago

1.0.0-alpha3

4 years ago

1.0.0-alpha4

4 years ago

1.0.0-alpha5

4 years ago

1.0.0-alpha1

4 years ago

1.0.0-alpha

4 years ago

0.3.2

4 years ago

0.4.0

4 years ago

0.3.1

4 years ago

0.3.0

4 years ago

0.2.0

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago