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

element-ui-saas-extend

v1.0.39

Published

基于 Element UI 对 SaaS 平台常见交互开发的预设组件

Downloads

83

Readme

Element SaaS 扩展

 

由于近期工作主要偏向 SaaS 业务开发,在表单和表格的交互上的开发有很高重复性,为减少重复工作量,针对SaaS业务的开发预设组件库。项目在 Element UI 套件的基础上开发,就作为他的扩展组件库吧。

文档

特性

  • 效率至上

    整理常见业务下的重复性工作,汇合成预设组件,高效的完成工作。
  • 尽享自由

    尽可能的梳理耦合,在兼顾高效的同时,亦给予自由的空间自定义垂直业务下的特殊场景。
  • 简单易用

    沿用Element UI 的标准开发,尽可能多的示例代码与文档,帮助你快速上手。

安装

npm 安装

yarn add element-ui-saas-extend -S
# or
npm install element-ui-saas-extend -S
import Vue from "vue";
import ElementUI from "element-ui";
import "element-ui/lib/theme-chalk/index.css";
Vue.use(ElementUI);

import ElementUISaaSExtend from "element-ui-saas-extend";
import "element-ui-saas-extend/lib/theme-chalk/index.css";
Vue.use(ElementUISaaSExtend);

CDN 引入

<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css" />
<link rel="stylesheet" href="https://unpkg.com/element-ui-saas-extend/lib/theme-chalk/index.css" />

<script src="//unpkg.com/vue"></script>
<script src="//unpkg.com/element-ui"></script>
<script src="//unpkg.com/element-ui-saas-extend"></script>

更多内容请查看文档

支持作者🚀

作者博客

如果您正在使用这个项目并感觉良好,或者是想支持我继续开发,Star 并分享这个项目

欢迎大家为该项目提交自己的建议 及 Issus,当然也欢迎大家提交 push request