学Vue框架之前需要了解的知识

学Vue框架之前需要了解的知识(未完待续...)

  • axios HTTP 库
  • vue-router 页面路由
  • vuex 状态管理
  • UI 界面组件
  • webpack JavaScript模块打包器

axios HTTP 库

axios 中文API
Axios 是一个基于 promise 的 HTTP 库,可以用在浏览器和 node.js 中。

特性

  1. 从浏览器中创建 XMLHttpRequests
  2. 从 node.js 创建 http 请求
  3. 支持 Promise API 拦截请求和响应
  4. 转换请求数据和响应数据
  5. 取消请求
  6. 自动转换 JSON 数据
  7. 客户端支持防御 XSRF

安装

使用 npm:

$ npm install axios

使用 bower:

$ bower install axios

使用 cdn:

<script src="https://unpkg.com/axios/dist/axios.min.js">script>

vue-router 页面路由

vue-router 中文API

vuex 状态管理

vuex 中文API

UI 界面组件

Element UI
ICE UI

webpack JavaScript模块打包器

webpack 中文API

你可能感兴趣的:(前端,SpringBoot,vue,js,框架)