관리-도구
편집 파일: NotAuthorize.vue
<template> <b-row> <b-col> <div class="not-found-wrap text-center"> <h1 class="text-60"> 403 </h1> <p class="text-36 subheading mb-3">{{$t('Error')}}</p> <p class="mb-5 text-muted text-18"> {{$t('you_are_not_authorized')}} </p> <a class="btn btn-lg btn-primary btn-rounded" href="/" >{{$t('Go_back_to_home')}}</a > </div> </b-col> </b-row> </template> <script> export default { metaInfo: { // if no subcomponents specify a metaInfo.title, this title will be used title: "403 Not Authorized" } }; </script>