npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

vue-skeleton-loading

v1.0.2

Published

a skeleton loading

Downloads

729

Readme

Vue Skeleton Loading version vue

Vue Skeleton Loading 是一个让我们快速和方便写出自定义 skeleton loading 的插件。

Demo

vue-skeleton-loading

Install

npm

npm install vue-skeleton-loading --save 

Dev

// 安装依赖
npm install

// 运行在 localhost:8080
npm run dev

Usage

项目入口文件全局注册

import Vue from 'vue';
import VueRouter from 'vue-router';
// 引用组件
import VueSkeletonLoading from 'vue-skeleton-loading';
import App from './app.vue';
import Index from './components';
import Page from './components/page';
import List1 from './components/list1';

// 安装插件
Vue.use(VueSkeletonLoading);
Vue.use(VueRouter);


const routes = [
	{
		name: 'index',
		path: '/',
		component: Index
	},
	{
        name: 'page',
        path: '/page',
        component: Page
	},
    {
        name: 'list1',
        path: '/list1',
        component: List1
    }
];
const router = new VueRouter({
	routes
});

new Vue({
	el: '#app',
	router,
	template: '<App />',
	components: {
		App
	}
});

使用组件

本插件总共有 5 个组件,两个基础组件( CircleSkeleton, SquareSkeleton ),两个布局组件( Column, Row ),一个容器组件( SkeletonLoading )。

例子一:

<template>
    <div class="list1">
        <skeleton-loading>
            <row
                    v-for="i in 6"
                    :key="i"
                    :gutter="{top: '10px', bottom: '10px'}"
            >
                <column :span="3" :gutter="10">
                    <circle-skeleton></circle-skeleton>
                </column>
                <column :span="20" :gutter="10">
                        <square-skeleton 
                            :count="2"
                            :boxProperties="{
                                bottom: '15px',
                                width: '250px',
                                height: '15px'
                            }"
                        >
                        </square-skeleton>
                </column>
            </row>
        </skeleton-loading>
    </div>
</template>

<script>
    export default {}
</script>

效果

skeleton-loading-demo1

例子二:

<template>
    <div class="page">
        <skeleton-loading>
            <row 
                :gutter="{
                    bottom: '15px'
                }"
            >
                <square-skeleton 
                    :count="2"
                    :boxProperties="{
                        top: '10px',
                        height: '26px'
                    }"
                >
                </square-skeleton>
            </row>
            <row>
                <column :span="4">
                    <circle-skeleton></circle-skeleton>
                </column>
                <column :span="20" :gutter="20">
                    <square-skeleton 
                        :boxProperties="{
                            top: '10px',
                            width: '70px',
                            height: '15px'
                        }"
                    >
                    </square-skeleton>
                    <square-skeleton 
                        :boxProperties="{
                            width: '100px',
                            height: '15px',
                            top: '10px'
                        }"
                    >
                    </square-skeleton>
                </column>
            </row>
            <row :gutter="{top: '20px'}">
                <square-skeleton 
                    :count="4"
                    :boxProperties="{
                        bottom: '10px'
                    }" 
                >
                </square-skeleton>
            </row>
            <row>
                 <square-skeleton 
                    :boxProperties="{
                        bottom: '10px',
                        height: '200px'
                    }"    
                >
                </square-skeleton>
            </row>
        </skeleton-loading>
    </div>
</template>

<script>
    export default {}
</script>

<style lang="less">
    .page {
        padding: 15px;
    }
</style>

效果

skeleton-loading-demo1

Options

SkeletonLoading

Props

| Props | Type | Default | Description | | :---- | :--- | :------ | :---------- | | - | - | - | - |

Function

| Name | Type | Descrition | | :--- | :--- | :--------- | | - | - | - |

Events

| Name | Type | Description | | :--- | ---- | ----------- | | - | - | - |

Slot

| Name | Description | | ------------ | ----------- | | default slot | - |

CircleSkeleton

Props

| Props | Type | Default | Description | | :-------- | :----- | :------ | :----------------- | | backColor | String | #e7e7e7 | background color | | diameter | String | 100% | diameter of circle |

Function

| Name | Type | Descrition | | :--- | :--- | :--------- | | - | - | - |

Events

| Name | Type | Description | | :--- | ---- | ----------- | | - | - | - |

Slot

| Name | Description | | ---- | ----------- | | - | - |

SquareSkeleton

Props

| Props | Type | Default | Description | | :------------ | :----- | :------ | :-------------------------------- | | backColor | String | #e7e7e7 | background color | | boxProperties | Object | | box properties of square skeleton | | count | Number | 1 | count of square skeleton |

boxProperties

| Item | Type | Default | Description | | ------ | ------ | ------- | ------------------------- | | width | String | 100% | 宽度 默认为容器的宽度支持px、em、rem单位 | | height | String | 16px | 高度 支持px、em、rem单位 | | top | String | 0 | 外上边距 支持px、em、rem单位 | | bottom | String | 0 | 外下边距 支持px、em、rem单位 |

Function

| Name | Type | Descrition | | :--- | :--- | :--------- | | - | - | - |

Events

| Name | Type | Description | | :--- | ---- | ----------- | | - | - | - |

Slot

| Name | Description | | ---- | ----------- | | - | - |

Column

Props

| Props | Type | Default | Description | | :----- | :----- | :------ | :--------------------------------------- | | gutter | Number | 0 | 左右的外边距 相当于 pading: 0 gutter, 单位px。 | | span | Number | - | 一行被等分为24份,span值为一行中占据的份数,参考这里 。 | | order | Number | - | 一行中位置优先级,参考这里 。 |

Function

| Name | Type | Descrition | | :--- | :--- | :--------- | | - | - | - |

Events

| Name | Type | Description | | :--- | ---- | ----------- | | - | - | - |

Slot

| Name | Description | | ---- | ----------- | | - | - |

Row

Props

| Props | Type | Default | Description | | :------ | :----- | :------ | :--------------------------------------- | | gutter | Object | - | 上下的外边距 相当于 pading: gutter.top 0 gutter.bottom 0, 单位px。 | | align | String | - | 值可以为 top, middle, bottom, 具体可以参考 flex。 | | justify | Number | - | 值可以为 start, end, center, space-around, space-between, 具体可以参考 flex 。 |

gutter

| Props | Type | Default | Description | | :----- | :----- | :------ | :--------------------------------------- | | top | String | 0 | 上外边距 相当于 pading-top: top, 需要带上单位, 单位可以是px em rem。 | | bottom | String | 0 | 下外边距 相当于 pading-bottom: top, 需要带上单位, 单位可以是px em rem。 |

Function

| Name | Type | Descrition | | :--- | :--- | :--------- | | - | - | - |

Events

| Name | Type | Description | | :--- | ---- | ----------- | | - | - | - |

Slot

| Name | Description | | ---- | ----------- | | - | - |

Notice

每一个 Skeleton Loading 所有的组件都必须是被 SkeletonLoading 组件包裹使用

e.g

<skeleton-loading>
            <row 
                :gutter="{
                    bottom: '15px'
                }"
            >
                <square-skeleton 
                    :count="2"
                    :boxProperties="{
                        top: '10px',
                        height: '26px'
                    }"
                >
                </square-skeleton>
            </row>
            <row>
                <column :span="4">
                    <circle-skeleton></circle-skeleton>
                </column>
                <column :span="20" :gutter="20">
                    <square-skeleton 
                        :boxProperties="{
                            top: '10px',
                            width: '70px',
                            height: '15px'
                        }"
                    >
                    </square-skeleton>
                    <square-skeleton 
                        :boxProperties="{
                            width: '100px',
                            height: '15px',
                            top: '10px'
                        }"
                    >
                    </square-skeleton>
                </column>
            </row>
            <row :gutter="{top: '20px'}">
                <square-skeleton 
                    :count="4"
                    :boxProperties="{
                        bottom: '10px'
                    }" 
                >
                </square-skeleton>
            </row>
            <row>
                 <square-skeleton 
                    :boxProperties="{
                        bottom: '10px',
                        height: '200px'
                    }"    
                >
                </square-skeleton>
            </row>
        </skeleton-loading>

License

MIT