@signainfo/sloading

npm i --save @signainfo/sloading

Usage no npm install needed!

<script type="module">
  import signainfoSloading from 'https://cdn.skypack.dev/@signainfo/sloading';
</script>

README

SLoading component

Installation

npm i --save @signainfo/sloading

Usage

It can be installed globally using:

import Vue from 'vue'
import SLoading from '@signainfo/sloading'
import '@signainfo/sloading/dist/sloading.css'
...

Vue.use(SLoading)

...

or used on demand:

<script>
import SLoading from '@signainfo/sloading'
export default {
  name: 'App',
  components: {
    's-loading': SLoading
  },
  data() {
    ...
  }
}
</script>

and use inside the template tag:

<template>
  ...
  <s-loading v-if="loading.show" :show="loading.show" :message="loading.message" />
  ...
</template>

Props:

props: {
    show: {
      type: Boolean,
      required: true,
      default: false
    },
    message: {
      type: String,
      required: true,
      default: ''
    }
}

Development

npm start // start the test app
npm run build // builds the component and publish to npm

Before building the component you need to advance the version using npm semver:

npm version patch // to patch version
npm version minor // to minor version
npm version major // to major version