-
Nuxt CSRF: 服务器中间件模块 for Nuxt 应用的 CSRF 保护
资源介绍
nuxt-csrf
用于NUXT的CSRF模块
安装
安装模块
# NPM
npm install --save @privyid/nuxt-csrf
# Yarn
yarn add @privyid/nuxt-csrf
包含在nuxt.config.js
// nuxt.config.js
{
modules : [
// Simple usage
'@privyid/nuxt-csrf' ,
// With options
[ '@privyid/nuxt-csrf' , { /* module options */ } ]
]
}
用法
获取令牌
通过组件
const token = this . $csrfToken ( )
通过上下文
const token = context . app . $csrfToken ( )
与