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

wot-plus

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wot-plus

基于 wot-design-uni 的二次封装组件库

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
1
-50%
Maintainers
1
Weekly downloads
 
Created
Source

Wot Plus

基于 wot-design-uni 的二次封装组件库,专为 UniApp 项目设计。

特性

  • 🛠️ 基于 wot-design-uni 1.3.0 进行二次封装
  • 📦 轻量级,专注于核心功能
  • 🎨 提供简洁的 API 设计
  • 🌐 支持 H5、小程序、App 等多平台
  • 🛡️ 使用 TypeScript 编写,提供完整的类型定义
  • 📚 完整的文档和示例

安装

npm install wot-plus

快速开始

全局引入

import { createApp } from 'vue'
import App from './App.vue'
import WotPlus from 'wot-plus'
import 'wot-plus/style.css'

const app = createApp(App)
app.use(WotPlus)
app.mount('#app')

按需引入

<template>
  <WotButton type="primary">主要按钮</WotButton>
</template>

<script setup>
import { WotButton } from 'wot-plus'
import 'wot-plus/style.css'
</script>

组件文档

请访问我们的 在线文档 查看完整的组件文档和示例。

开发

# 启动开发服务器
npm run dev

# 构建组件库
npm run lib

# 启动文档开发服务器
npm run docs:dev

# 构建文档站点
npm run docs:build

发布

# 构建组件库
npm run lib

# 发布到 npm
npm publish

许可证

MIT

Keywords

vue

FAQs

Package last updated on 21 Oct 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