logout.vue 241 B

123456789101112131415161718192021
  1. <template>
  2. <div />
  3. </template>
  4. <script>
  5. export default {
  6. name: 'Logout',
  7. components: {},
  8. data () {
  9. return {}
  10. },
  11. mounted () {
  12. this.$router.push({ path: '/login' })
  13. },
  14. methods: {}
  15. }
  16. </script>
  17. <style scoped>
  18. </style>