New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

miniui-components

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

miniui-components

miniui components

latest
npmnpm
Version
2.0.3
Version published
Weekly downloads
9
-81.25%
Maintainers
1
Weekly downloads
 
Created
Source

MiniUI 类型库

概念

http://miniui.com 发布的MiniUI前端组件库非常适合于企业信息化类应用的开发。但该库是基于JAVAScript开发,没有相应的类型库,导致开发者使用极为不变,因此,我详细分析原代码,并实现了该库的全部类型定义。以方便开发者使用。

使用方法


    //引用miniui库
    import { mini } from "miniui-components"
    
    //miniui的分析
    mini.parse();

    //实例化组件变量
    const btn1 = mini.get("btn1") as mini.Button;
    const btn_start = mini.get("btn_start") as mini.Button;
    const btn_mode_signal = mini.get("radio_btn_signal") as mini.Button;
    const btn_mode_scan = mini.get("radio_btn_scan") as mini.Button;
    const btn_mode_bode = mini.get("radio_btn_bode") as mini.Button;

    //监听事件
    btn1.on("click", async e => {

    })

版权声明

这个库使用的MiniUI原码来源于其官方开放的测试原代码,并不能用于生产目的!如果需要在生产中使用,请联系MiniUI团队,在经过MiniUI团队的许可后,可与我联系获取正式版本.

联系方式

我的邮箱:shuaihuxiao@qq.com

联系电话:13120118297

Keywords

miniui

FAQs

Package last updated on 09 Dec 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts