0.5.0 • Published 5 years ago
@signainfo/sloading v0.5.0
SLoading component
Installation
npm i --save @signainfo/sloadingUsage
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 npmBefore 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