rloading

`npm i rloading` #在项目中使用 <template> <div> <RjLoading v-if="RjloadingStatus" /> </div> </template> <script> import RjLoading from 'rloading'; export default { components: { RjLoading }, data () { return {

Usage no npm install needed!

<script type="module">
  import rloading from 'https://cdn.skypack.dev/rloading';
</script>

README

使用方式

npm i rloading

在项目中使用

<template>
<div>
 <RjLoading v-if="RjloadingStatus" />
</div>
</template>
<script>
import RjLoading from 'rloading';
export default {
components: { RjLoading },
data () {
 return {
  RjloadingStatus: true
 };
}
};
</script>