edit.vue 269 B

12345678910111213141516171819202122
  1. <template>
  2. <h2 class="text-[20px] m-8px">
  3. 链接已失效,请重新申请重置密码
  4. </h2>
  5. </template>
  6. <script>
  7. export default {
  8. layout(){
  9. return 'custom'
  10. },
  11. head(){
  12. return {
  13. title:'错误信息'
  14. }
  15. },
  16. }
  17. </script>
  18. <style>
  19. </style>