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

advint-ui

v0.0.16

Published

基于 Vue3 + TypeScript + Element Plus 的企业级组件库,提供了更高级的业务组件和丰富的功能扩展。

Downloads

663

Readme

Advint UI

介绍

基于 Vue3 + TypeScript + Element Plus 的企业级组件库,提供了更高级的业务组件和丰富的功能扩展。

特性

  • 🚀 基于 Vue3、TypeScript、Element Plus
  • 📦 开箱即用的高质量组件
  • 🎨 统一的设计规范和视觉风格
  • 🔧 支持按需引入和Tree Shaking
  • 📝 详细的文档和示例
  • 🔥 支持 TypeScript,提供完整的类型定义
  • ⚡️ 使用 Vite 构建,提供极致的开发体验

安装

安装组件库

pnpm add advint-ui

安装依赖

# 必需的依赖
pnpm add vue element-plus @element-plus/icons-vue @vueuse/core

# 如果需要使用 HTTP 请求功能
pnpm add axios

使用

完整引入

import { createApp } from 'vue'
import AdvintUi from 'advint-ui'
import 'advint-ui/styles/index.css'

const app = createApp(App)
app.use(AdvintUi)
app.mount('#app')

按需引入基础组件

import { createApp } from 'vue'
import { AdvButton, AdvForm, AdvTable } from 'advint-ui'
import 'advint-ui/styles/index.css'

const app = createApp(App)
app.use(AdvButton)
   .use(AdvForm)
   .use(AdvTable)
app.mount('#app')

使用特殊组件

# HTTP 请求功能
import { createHttp } from 'advint-ui/special/http'

TypeScript 支持

// tsconfig.json
{
  "compilerOptions": {
    "types": ["advint-ui/global.d.ts"]
  }
}

组件分类

基础组件

  • 无需额外安装依赖
  • 包含常用的 UI 组件
  • 已集成必要的工具库(lodash-es、sortablejs 等)

特殊组件

  • 需要安装对应的依赖
  • 按需引入,不影响基础组件的使用
  • 独立打包,减小基础包体积

特殊组件及其依赖: | 组件 | 路径 | 依赖 | |------|------|------| | HTTP请求 | advint-ui/special/http | axios |

样式引入

所有组件样式已统一打包,只需要引入一次:

import 'advint-ui/styles/index.css'

浏览器支持

  • Chrome >= 87
  • Firefox >= 78
  • Safari >= 14
  • Edge >= 88

许可证

MIT