vue使用jwt解码token获取id

安装jwt

yarn add jwt-decode

导入jwt

import jwt_decode from 'jwt-decode'

使用jwt解码

const userId = jwt_decode(token)

你可能感兴趣的:(vue.js,javascript)