NotFind.vue 467 B

123456789101112131415161718192021222324
  1. <template>
  2. <div>
  3. <h1>您来到了哪里?点击<em @click="toLogin" style="color: blue;cursor: pointer;">这里 </em>跳转到登录页</h1>
  4. </div>
  5. </template>
  6. <script>
  7. import { useRouter } from 'vue-router';
  8. import router from '@/router';
  9. export default {
  10. setup() {
  11. function toLogin(){
  12. router.push("/login")
  13. }
  14. return {
  15. toLogin,
  16. }
  17. }
  18. }
  19. </script>
  20. <style lang="scss" scoped>
  21. </style>