Skip to content
On this page

快速上手

提示

jnf-ui 基于 vue3 + ts + Element-plus 再次封装的基础组件

安装

bash
npm install jnf-ui -S
&
pnpm add jnf-ui -S
npm install jnf-ui -S
&
pnpm add jnf-ui -S

使用

js
// main.ts
import JnfUi from 'jnf-ui'
import 'jnf-ui/lib/style.css'
const app = createApp(App)
app.use(JnfUi)
app.mount('#app')
// main.ts
import JnfUi from 'jnf-ui'
import 'jnf-ui/lib/style.css'
const app = createApp(App)
app.use(JnfUi)
app.mount('#app')

jnf-ui组件 Volar 类型提示

js
// 需要在使用的项目的tsconfig.json文件中添加以下
compilerOptions:{
  "types": [
      "jnf-ui/components.d.ts",
    ],
}
// 需要在使用的项目的tsconfig.json文件中添加以下
compilerOptions:{
  "types": [
      "jnf-ui/components.d.ts",
    ],
}

docs文档结构目录

├─ examples               # VPDemo组件自动解析此文件夹下的所有.vue文件
├─ components             # .md文件
├─ public                 # 静态资源文件
├─ .vitepress
│  ├─ config              # 插件配置
|  │  ├─ global.ts        # 全局变量定义
|  │  └─ plugins.ts       # 自定义.md文件渲染
│  ├─ theme               # 主题配置
│  ├─ utils               # 文档展开隐藏代码高亮
│  ├─ vitepress
|  │  ├─ vp-demo          # VPDemo组件源码
|  │  ├─ style            # VPDemo组件样式
|  │  └─ index.ts         # 暴露VPDemo组件
│  └─ config.ts           # vitepress配置文件
├─ index.md               # 文档home页面
├─ tsconfig.json          # typescript 全局配置
└─ vite.config.ts         # vite 全局配置文件(支持tsx)
├─ examples               # VPDemo组件自动解析此文件夹下的所有.vue文件
├─ components             # .md文件
├─ public                 # 静态资源文件
├─ .vitepress
│  ├─ config              # 插件配置
|  │  ├─ global.ts        # 全局变量定义
|  │  └─ plugins.ts       # 自定义.md文件渲染
│  ├─ theme               # 主题配置
│  ├─ utils               # 文档展开隐藏代码高亮
│  ├─ vitepress
|  │  ├─ vp-demo          # VPDemo组件源码
|  │  ├─ style            # VPDemo组件样式
|  │  └─ index.ts         # 暴露VPDemo组件
│  └─ config.ts           # vitepress配置文件
├─ index.md               # 文档home页面
├─ tsconfig.json          # typescript 全局配置
└─ vite.config.ts         # vite 全局配置文件(支持tsx)

vue2基础组件

基于 vue2 + Element-ui 和 ant-design-vue 二次封装的基础组件