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 🙏

© 2024 – Pkg Stats / Ryan Hefner

cw-public-ui

v1.4.2

Published

个人桌面端公共组件库全称为 cwPublicUI。

Downloads

3

Readme

开发指南

介绍

个人桌面端公共组件库全称为 cwPublicUI。

cwPublicUI 基础组件库从个人平时办公结合多款线上应用精简提炼而来,除了应付平时的工作需求,也可以支持自定义拓展与主题定制以支持各种各样的应用场景。

cwPublicUI 以快速、流畅、简单为目标,不断构建简单高效的组件功能和交互。代码结构清晰明了,无论是示例文档还是代码都保持着可读性和可维护性。

浏览器支持

现代浏览器、Android 4.0+ 、IOS 6+

参考说明

本项目参考 elementcubevant 的代码结构和相关开发规范,并在其基础上进行修改和改进

快速上手

下载 cwPublicUI

npm install cw-public-ui

引入 cwPublicUI

你可以引入整个 cwPublicUI,我们先介绍如何引入完整的 cwPublicUI。

在 main.js 中写入以下内容:

import Vue from 'vue'
import App from './App.vue'

import cwPublicUI from 'cw-public-ui'
import "cw-public-ui/cw-ui.css"
Vue.use(cwPublicUI)
 
// 是否启动生产消息
new Vue({
  render: h => h(App)
}).$mount('#app')

以上代码便完成了 cwPublicUI 的引入。需要注意的是,样式文件需要单独引入

开始使用

至此,一个基于 Vue 和 cwPublicUI 的开发环境已经搭建完毕,现在就可以编写代码了。各个组件的使用方法请参阅它们各自的文档。 文档可以参考 https://cwlojako.gitee.io/myblog/public-ui/quickStart.html