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

@secrets/vue-form

v2.1.16

Published

vue-form

Downloads

16

Readme

vue-form

A JSON Scheme parse for Form with Element-UI,iview

  • support switch,input,input-number,select,radio,checkbox,date components.
  • support minimun,maximun,minLength,maxlenght,pattern form rules.
  • support array & object nest
  • support simple object without properties
  • support anyOf
  • support request url for select-options

How to use

npm i @secrets/vue-form
import elementUI from "element-ui";
import vueForm from "@secrets/vue-form";
Vue.use(elementUI);
Vue.use(vueForm, {
  elementUI: true // or
  // iView: true
});

demo

const schema = {
  title: "basic",
  type: "object",
  buttons: ["confirm"],
  properties: {
    name: {
      type: "string",
      title: "姓名"
    },
    school: {
      title: "学校",
      type: "object",
      properties: {
        address: {
          title: "地址",
          type: "string"
        },
        category: {
          title: "等级",
          type: "select",
          options: [
            {
              label: "高中",
              value: "major"
            },
            {
              label: "初中",
              value: "minor"
            }
          ]
        }
      }
    },
    type: {
      type: "select",
      title: "类型",
      options: [
        {
          label: "类型1",
          value: "type1"
        },
        {
          label: "类型2",
          value: "type2"
        }
      ]
    },
    radio: {
      type: "radio",
      title: "类型",
      options: [
        {
          label: "类型1",
          value: "type1"
        },
        {
          label: "类型2",
          value: "type2"
        }
      ]
    },
    date: {
      type: "date",
      title: "生日"
    },
    secrets: {
      type: "array",
      title: "密钥",
      items: {
        type: "string"
      }
    },
    headers: {
      type: "object" // get a basic object
    },
    key: {
      // like a select
      enum: [
        "remote_addr",
        "server_addr",
        "http_x_real_ip",
        "http_x_forwarded_for"
      ],
      type: "string"
    },
    rejected_code: {
      default: 201,
      minimum: 200, //minimum maximum
      type: "integer"
    },
    configmaps: {
      type: "array",
      title: "挂载",
      items: {
        type: "object",
        properties: {
          name: {
            type: "string",
            title: "名称"
          },
          path: {
            type: "string",
            title: "路径"
          }
        }
      }
    }
  },
  required: ["name", "phone"]
};
<vue-form ref="form" :schema="schema"></vue-form>

API

this.$refs.form.validate(); // validate the form
this.$refs.form.getData(); // get the realtime data

demo.png

打包

yarn build
// or
npm run build

本地测试

  1. 本项目中
yarn build  // 打包出来
yarn link //加入到本地全局模块
  1. 目标项目
yarn link  @secrets/vue-form

扩展

description

description 可以写入一个 json-string,如:

description: '{"title":"姓名","description":"描述信息","index":1}';

| key | 描述 | 补充说明 | | ----------- | -------------------------------------- | --------------------- | | title | 真实数据显示的名称 | - | | description | 描述信息,添加后会有一个 tooltip 提示 | - | | index | 字段排序,优先取 required 中配置的顺序 | - | | url | 接口请求地址 | 需要传入 request 属性 | | show | url 数据中展示的字段 | | | return | url 数据中作为值的字段 | |

request

需要手动传入一个 request 方法,比如axios.post, 内部逻辑会使用这个 request 根据 url 发起请求;响应结果的格式是固定的

{
  data:[],
  total:10
}

自定义样式

  1. 添加 style 通过设置 ui:options,数据是一个 Object,可以在 config 中设置,也可以在上述 description 扩展中写
  2. 添加 class 通过设置 ui:options,数据是一个 Array,可以在 config 中设置,也可以在上述 description 扩展中写