# xboot-admin **Repository Path**: HLG-FRAMEWORK/xboot-admin ## Basic Information - **Project Name**: xboot-admin - **Description**: 基于iview二次深度抽象的后台管理快速开发框架 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2017-08-22 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 核心技术栈 1. MVVM框架(Vue2.0+) http://cn.vuejs.org/ 2. 路由(Vue-Router2.0+) http://router.vuejs.org/zh-cn/ 3. 状态管理(Vuex2.0+,基于Redux) http://vuex.vuejs.org/zh-cn/ # 开源库 1. UI组件库(iview2.0+): https://github.com/iview/iview 2. JS工具包lodsh:https://lodash.com/ 3. 日期格式化工具moment:https://github.com/moment/moment 4. 加密crypto-js:https://github.com/brix/crypto-js 5. Ajax框架(axios):https://github.com/mzabriskie/axios 6. 图表库(echarts):https://github.com/ecomfe/echarts 7. 文档转图片(html2canvas):https://github.com/niklasvh/html2canvas 8. clipboard:https://github.com/zenorocha/clipboard.js 9. cookie操作:https://github.com/js-cookie/js-cookie 10. 金额和数字格式化:https://github.com/openexchangerates/accounting.js 文档:http://openexchangerates.github.io/accounting.js/ ## Build Setup ``` bash # install yarn npm install -g yarn # install dependencies yarn # serve with hot reload at localhost:8083 yarn run dev # build for production with minification yarn run build ``` # 使用 1. 发送ajax ``` this.$http.[get|post|delete|...](url).then((resp) => { }).catch(console.warn.bind(console)) ```