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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@lpg/l-ui

v1.0.7

Published

基于 element-ui 二次开发

Downloads

17

Readme

l-ui

intro

基于 element-ui 二次开发

.
├── cdn
├── components
│   ├── ErrorPage
│   │   └── 404
│   ├── Pager 分页
│   └── table 表格
├── examples
├── lib
├── markdowns 说明文档
├── packages
├── scss
├── src
├── README
└── package.json

use

yarn add @lpg/l-ui
// main.js
import lui from '@lpg/l-ui'
import '@/scss'
Vue.use(lui)
// /src/scss/index.scss
@import '~@/scss/element-variables'; // 变量

$--font-path: '~element-ui/lib/theme-chalk/fonts'; // element字体

@import '~element-ui/packages/theme-chalk/src/index'; // element style

@import '~@lpg/l-ui/scss'; // lui style
// 需配置webpack自动后缀 extensions 
// 若未配置,引入方式 import '@lpg/l-ui/scss/index.scss';

components

pager

table

notice

vue ie es6兼容

// vue.config.js
  transpileDependencies:['@lpg/l-ui'],

version

1.0.0

  1. components
    1. table 组件
    2. ErrorPage 404 组件
    3. Pager 分页组件
  2. scss
    1. var 变量
    2. modules -> table

1.0.1

  1. ie 兼容性配置说明
  2. README 使用说明更新
  3. components -> table
    1. pxtorem
    2. 修复handle计算宽度
      1. 判断最长字数
      2. 修复相同个数操作按钮可能字数不同,导致按钮显示不全
        1. 最大值不一定字数最大,操作文字可能不同

1.0.2

  1. components -> table
    1. 组件问题解决方案
      1. 使用rem调节字体时,列表滑动边框位置错乱
      2. 解决方案 调节字体时重新渲染列表
      3. 无数据页面调整
        1. 添加配置项是否显示表头
        2. 添加配置项无数据显示文字
  2. 说明文档补充
    1. markdowns -> table

1.0.3

  1. 说明文档补充
    1. markdowns -> table
  2. components -> pager
    1. 修复分页器中间页数显示bug

1.0.4

  1. 说明文档补充
    1. markdowns -> table
    2. markdowns -> pager
  2. components -> pager
    1. 样式调整

1.0.5

  1. components -> pager
    1. 修复分页器偶数显示bug

1.0.6

  1. 说明文档补充
    1. markdowns -> table
  2. components -> pager
    1. 样式调整取消,采用elementUi初始样式
  3. components -> table
    1. tableOptions -> formatterOptions 所设置列可通过参数配置handle handle: [{ operationName: 'col.titleCode', urlPath: "methodName()", systemShow: '2' }] 触发methodName 事件

1.0.7

  1. 说明文档补充
    1. markdowns -> table
  2. 新增 components -> ErrorPage404
  3. 新增 components -> ImageViewer
  4. 新增 markdowns -> ImageViewer