Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

tonglkj-ui

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tonglkj-ui

Vue 中基于Element-ui二次封装基础组件文档

latest
npmnpm
Version
0.0.4
Version published
Weekly downloads
8
100%
Maintainers
1
Weekly downloads
 
Created
Source

tonglkj-ui

基于 Element-plus 二次封装基础组件地址

npm 方式安装使用

前提条件:使用项目必须全局注册 Element-ui 组件库

// 先安装
npm i @wocwin/t-ui
// 1、 在main.js中按下引入(全局使用)
import Tui from '@wocwin/t-ui'
Vue.use(Tui)

// 2、按需引入,在单个vue文件如下引入,在注册;或者在main.js中如下引入在注册,皆可!
import { TTable, TLayoutPage, TLayoutPageItem, TForm, TQueryCondition } from '@wocwin/t-ui'

直接在项目中全局使用

// 1、把packages文件夹复制,放在自己项目中
// 2、假设 packages 与 src是同级,那么src下 main.js 如下操作即可全局使用t-ui
import Tui from '../packages';
Vue.use(Tui);

安装依赖

npm install

本地运行 src 中组件示例

npm run serve

本地运行 vuepress 中组件文档

npm run docs:dev

Git 提交规范

  • ci: ci 配置文件和脚本的变动;
  • chore: 构建系统或辅助工具的变动;
  • fix: 代码 BUG 修复;
  • feat: 新功能;
  • perf: 性能优化和提升;
  • refactor: 仅仅是代码变动,既不是修复 BUG 也不是引入新功能;
  • style: 代码格式调整,可能是空格、分号、缩进等等;
  • docs: 文档变动;
  • test: 补充缺失的测试用例或者修正现有的测试用例;
  • revert: 回滚操作;

Keywords

element-ui

FAQs

Package last updated on 27 Feb 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