Nuxt.js middleware 屬性

2022-03-03 15:32 更新

middleware 屬性

在應(yīng)用中的特定頁(yè)面設(shè)置中間件
  • 類型: String 或 Array數(shù)組元素類型: String

例子:

pages/secret.vue

<template>
  <h1>Secret page</h1>
</template>

<script>
export default {
  middleware: 'authenticated'
}
</script>

middleware/authenticated.js

export default function ({ store, redirect }) {
  // If the user is not authenticated
  if (!store.state.authenticated) {
    return redirect('/login')
  }
}



以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)