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

dl-smart-form

v0.1.14

Published

基于 vue 与 element-UI 设计的自定义表单

Downloads

4

Readme

dl-smart-form

dl-smart-form是基于 vue 与 element-UI 设计的自定义表单。文档查看

npm 安装

推荐使用 npm 的方式安装,它能更好地和 webpack 打包工具配合使用。

npm i dl-smart-form -S

完整引入

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

import Vue from 'vue';
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
import App from './App.vue';

import {
  createrInstaller,
  reporterInstaller,
  showerInstaller
} from 'dl-smart-form';

Vue.use(Element)
Vue.use(createrInstaller)
Vue.use(reporterInstaller)
Vue.use(showerInstaller)

new Vue({
  router,
  render: h => h(App)
}).$mount('#app')

verison

| 版本 | 描述 | 日期 | | - | - | - | | 0.1.14 | 内部字段控件移动端兼容 | 2023.03.22 | | 0.1.13 | 添加右击新增插入字段功能 | 2023.02.01 | | 0.1.12 | 关联规则选项操作bug修复 | 2022.11.17 | | 0.1.11 | 表单样式优化 | 2022.10.08 | | 0.1.10 | 右击菜单项bug修复 | 2022.09.29 | | 0.1.9 | 修改开关关联规则 | 2022.09.28 | | 0.1.8 | 关联规则文档整理编写 | 2022.09.28 | | 0.1.7 | 梳理优化代码和文档,添加明细字表控件 | 2022.09.27 | | 0.1.6 | 优化关联规则 | 2022.09.19 | | 0.1.5 | 优化开关关联规则,表单布局样式优化 | 2022.09.01 | | 0.1.4 | 增加字段 Key 属性配置功能、优化移动端布局数据、新增 空白行 布局字段 | 2022.08.31 | | 0.1.2 | 初始beta版本 | 2022.08.26 |