# vue-speedy-antd

> ---- 使用 [Ant Design Vue](https://vue.ant.design)封装的一套通用组件功能库

Latest version **0.3.77** (published 2023-03-18) · MIT license · 0 weekly downloads

## Install

```sh
npm install vue-speedy-antd
pnpm add vue-speedy-antd
yarn add vue-speedy-antd
bun add vue-speedy-antd
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.3.77 |
| Published | 2023-03-18 |
| First published | 2023-03-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 11 |
| Unpacked size | 4.4 MB |
| Known vulnerabilities | 0 (+28 in 4 direct dependencies) |
| Install scripts | no |
| Maintainers | gefangshuai |

## Links

- npm: https://www.npmjs.com/package/vue-speedy-antd
- npm.io page: https://npm.io/package/vue-speedy-antd

## Dependencies (11)

- [vue](https://npm.io/package/vue.md) 2.6.14
- [vuex](https://npm.io/package/vuex.md) 3.1.1
- [async](https://npm.io/package/async.md) ^3.1.0
- [axios](https://npm.io/package/axios.md) ^0.19.0
- [core-js](https://npm.io/package/core-js.md) ^2.6.5
- [lscache](https://npm.io/package/lscache.md) ^1.3.0
- [vue-bus](https://npm.io/package/vue-bus.md) 1.2.1
- [js-cookie](https://npm.io/package/js-cookie.md) ^2.2.1
- [vue-router](https://npm.io/package/vue-router.md) 3.0.7
- [wangeditor](https://npm.io/package/wangeditor.md) 3.1.1
- [ant-design-vue](https://npm.io/package/ant-design-vue.md) 1.7.8

## Recent versions

- 0.3.77 (latest) — 2023-03-18
- 0.3.76 — 2023-03-18
- 0.3.75 — 2023-03-18

## README

# vue-speedy-antd
----
使用 [Ant Design Vue](https://vue.ant.design)封装的一套通用组件功能库

![](./example.jpg)

## Use
```bash
yarn add vue-speedy-antd@version
```
## vue.config.js
```javascript
module.exports = require('./conf')({
    lessModifyVars: {

    },
    title: '未设置站点标题',
    baseUrl: '/',
    devServer: {
        port: 6060,
        proxy: {
            '/api': {
                target: "http://yoyotrip.kanasinfo.com",
                changeOrigin: true,
                secure: false,
                pathRewrite: {
                    '^/api': '/api'
                }
            }
        }
    }
})
```

## main.js 
```javascript
import Vue from "vue";
import Inject from 'vue-speedy-antd/conf/main-inject'
import pages from 'vue-speedy-antd/src/pages'
import adminLayout from "vue-speedy-antd/src/components/layout/admin-layout";

Vue.use(adminLayout)  // 使用 AdminLayout 构造网站
Vue.use(Inject, {
    config: {
    },
    menus: [
        {
            id: 'home',         // 唯一ID
            name: '首页',        // 显示的名称
            icon: 'home',       // 菜单图标
            url: '/home',       // 跳转地址
            fixed: true         // 不能删除
        },
        {
            id: 'example',
            name: '示例',
            icon: 'appstore',
            children: [
                {
                    id: 'exampleBase',
                    name: '基础示例',
                    url: '/example',
                }
            ]
        }
    ],
    pages: pages,       // 自定义路由
    modules: [          // Vuex
        {
            path: 'test',
            module: {
                namespaced: true,
                state: {
                    name: 'VueSpeedyAntD'
                },
                getters: {
                    nameGet: state => state.name
                }
            }
        }
    ]
})

```

---
_Source: https://npm.io/package/vue-speedy-antd · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
