vue 相關外掛程式介紹

2021-09-11 05:17:52 字數 1186 閱讀 9836

介紹一下vue中會用的外掛程式,每個外掛程式都值得好好研究,可自行檢視官方文件:

一、nuxt.js

nuxt.js官網

二、axios

詳細文件

1、簡介

axios 是乙個基於 promise , 同時支援瀏覽器端和node.js的 http 庫 , 常用於 ajax 請求。

vue不像 jquery 或 angularjs , 本身並沒有攜帶 ajax 方法 , 因此需要借助外掛程式或第三方 http庫 , 而 axios 就是乙個很不錯的選擇。

2、使用方法

import axios from

'axios'

// 為給定 id 的 user 建立請求

axios.

get(

'/user?id=12345').

then

(function

(response)).

catch

(function

(error));

// 可選地,上面的請求可以這樣做

axios.

get(

'/user',}

).then

(function

(response)).

catch

(function

(error)

);

axios.

post

('/user',)

.then

(function

(response)).

catch

(function

(error)

);

function

getuseraccount()

function

getuserpermissions()

axios.

all(

[getuseraccount()

,getuserpermissions()

]).then

(axios.

spread

(function

(acct, perms)))

;

vue相關UI外掛程式庫

3 element ui元件庫element,一套為開發者 設計師和產品經理準備的基於 vue 2.0 的桌面端元件庫。element是餓了麼前端開源維護的vue ui元件庫,更新頻率還是很高的,基本一周到半個月都會發布乙個新版本。元件齊全,基本涵蓋後台所需的所有元件,文件講解詳細,例子也很豐富。沒...

Vue相關外掛程式使用記錄

1.列表輪播 類似新聞列表,中獎資訊 名稱vue seamless scrollcdn 介紹 樣例 import vueseamlessscroll from vue seamless scroll data中定義 classoption list box style lucklist active...

npm外掛程式開發 Vue外掛程式

vue init webpack npm vue ui,dependencies browserslist 1 last 2 versions not ie 8 devdependencies const path require path const webpack require webpack...