1.0.6 • Published 2 years ago

xpx-ui-new v1.0.6

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

一、项目简介

  1. 项目名:XPX-UI

二、项目开发注意事项

  1. 打开项目首页:npm run serve:md

三、项目目录划分

编写组件4步流程

  1. 编写组件.vue代码实现:src -> components -> 新建文件夹(含src->index.vue文件夹 & index.js)。
  2. 编写组件对应的介绍文档:examples -> docs -> xxx.md。
  3. 在src\index.js里面引入第2步的xx.md。
  4. 在examples\nav.config.json中添加组件md的路由。

其他注意事项

  1. 组件的name属性必须要写&写对,否则在xx.md(注:不需要注册组件!)中直接使用该组件,可能会报错:Unknown custom element: - did you register the component correctly? For recursive components, make sure to provide the "name" option.

xpx-ui

NPM version

使用方法

  1. 安装

    npm install xpx-ui -D
  2. 全局引入

    在 main.js 中写入以下内容

    ...
    import XUI from 'xpx-ui'
    Vue.use(XUI)
    ...
  3. 按需引入

    ...
    import { XProInput } from 'xpx-ui'
    Vue.use(XProInput)
    ...