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

star-horse-form

v2.1.12

Published

星马动态表单组件

Readme

#说明

现单独拆分出来作为独立的组件使用,本人会利用业余时间逐步优化,此组件在本人项目中使用已趋于稳定,可根据实际情况进行建模使用。

#配置方法

在main.js 中引入以下代码

//加载star-horse-lowcode 和star-horse-form 的css文件
import "star-horse-lowcode/assets/index.css"
import "star-horse-form/assets/index.css"
import "element-plus/dist/index.css"
import {createApp} from 'vue'
import App from './App.vue'
//加载star-horse-form 表单组件
import StartHorseForm from 'star-horse-form';

const app = createApp(App);
//挂载到实例中
app.use(StartHorseForm, {});
app.mount('#app')

#在组件中使用

<script setup>
import {StarHorseFormDesign,FormConfig} from "star-horse-form";
const optional:FormConfig={};
</script>
<template>
   <StarHorseFormDesign :optional="optional"/>
 </template>
<style scoped>
</style>

#更新日志:

v1.2.0

 - 升级内部组件,清理无用代码

v1.3.0

 - 修复对话框超出高度显示异常

v1.4.0

 - 修复optional 可选项没有赋值时报错的bug

v1.5.0

 - 修复配置关联关系,表单不能选中的bug

v1.6.0

 - 修复头部按钮区域自定义按钮不显示问题

v1.7.0

 - 修复在full模式下快捷菜单列表不显示问题

v1.7.1

- 增加PreviewDialog和DbListComp 组件导出

v1.7.2

- 增加FormView 组件导出

v1.8.0

- 优化列表容器禁止在单元格内显示标签

v1.9.0

- 增加dialog 组件

v2.0.0

- 增加DataSourceComp,DbListComp,FormMenuShot,WebUrlComp组件导出

v2.0.0

- 更新star-horse-lowcode 版本

v2.1.0

- 更新star-horse-lowcode 版本
--修复其它bug

v2.1.2

- 更新star-horse-lowcode 版本
--table和box 容器展示bug,可通过此二者容器构建复杂的表单

v2.1.3

- 修复更新导致的bug

v2.1.4

- 升级依赖插件,增加drawer组件,修复已知bug

v2.1.5

- 表格容器和栅格容器,增加快速创建行和列属性,
- 所有组件和容器在个性化中都增加了,自定义属性,组件如果是来源于element-plus 的二次封装,可参照官网进行设置,
  在自定义属性中没有验证属性是函数的情况,请慎用,其它字符串,布尔类型,数值,对象,数组等可正常使用

v2.1.6

--更新因核心库bug导致的问题

v2.1.7

--更新因核心库bug导致的问题

v2.1.8

--更新因核心库bug导致的问题

v2.1.9

--修复设计器组件间距,修改用户属性中下拉数据异常

v2.1.10

--修复核心组件升级vite 导致的问题

v2.1.11

--升级核心组件

v2.1.12

--容器组件增加了mapping 参数,参数值1:表示1对1或者n:表示1对多, 解决表单中主子表对应关系的时候,是1对1 还是1对n