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

im-design

v1.4.51

Published

A Component Library for Vue 3

Downloads

212

Readme

ImDesign

Im Design

A Vue.js 3 UI Component Library.(Vue.js 3 UI 组件库。)

Ingeniously crafted, the ultimate experience. Enterprise-level component library solution

(匠心打造,极致体验。企业级组件库解决方案)

Getting Started

Alright, for you to get started if you are looking for making ImDesign better you should keep reading. For developers that uses ImDesign to develop your website you should go ahead visit Getting Started.

(好了,如果你想让 ImDesign 变得更好,那就继续阅读吧。对于使用 ImDesign 开发网站的开发者,你应该继续阅读“入门”。)

为什么选择 ImDesign

Its design concept is "craftsmanship, ultimate experience". Make your development more efficient and make your product more beautiful.

(它的设计理念是“匠心打造,极致体验”。让你的开发更加高效,让你的产品更加美观。)

Our components are constantly being improved. If you have any suggestions or questions, please raise them in Issues. In the future, ImDesign will support more components and will be more perfect.

(我们组件正在不断完善中,如果你有任何建议或者问题欢迎在 Issues 中提出。 未来 ImDesign 会支持更多的组件,也会更加完善。)

Previews

Show Components Preview

Buttons

Buttons

Date picker

DatePicker

DateTimePicker

DateTimePicker

DateRangePicker

DateRangePicker

DateRangeTimePicker

DateRangeTimePicker

Installation

# 使用 npm
npm install im-design --save

# 使用 yarn
yarn add im-design

# 使用 pnpm
pnpm add im-design

Usage

Support auxiliary import and full import methods

(支持按需导入和全部导入方式)

Import all components

// main.js
import { createApp } from 'vue';
import App from './App.vue';
import ImDesign, { ImDirective } from 'im-design';
import 'im-design/dist/index.css';

const app = createApp(App);
app.use(ImDesign, { size: '36', zIndex: 1000 });
app.use(ImDirective);
app.mount('#app');

Import specific component

// main.ts
import { createApp } from 'vue';
import App from './App.vue';
import { ImButton } from 'im-design';
import 'im-design/dist/index.css';

const app = createApp(App);
app.component(ImButton.name, ImButton);
app.mount('#app');

Component example

<template>
  <div class="demo-container">
    <im-button type="primary" @click="handleClick">
      Click {{ count }}
    </im-button>
  </div>
</template>

<script setup>
import { ref } from 'vue';

const count = ref(0);
const handleClick = () => {
  count.value++;
};
</script>

Docs

Click here to view the documentation.点击这里查看文档。

License

MIT © im-design