- conversion from Element UI to Bootstrap 4 in progress (smaller, more flexible) - added Font Awesome for fonts, vue-toast for notifications - added common components to main.js and out of other components - some work on pulling answered requests (#3), added icon for notes (#8)
21 lines
405 B
Vue
21 lines
405 B
Vue
<template lang="pug">
|
|
article
|
|
pageTitle(title='Logging On')
|
|
p Logging you on...
|
|
</template>
|
|
|
|
<script>
|
|
'use strict'
|
|
|
|
import AuthService from '@/auth/AuthService'
|
|
|
|
export default {
|
|
name: 'log-on',
|
|
created () {
|
|
this.$Progress.start()
|
|
new AuthService().handleAuthentication(this.$store, this.$router)
|
|
// Auth service redirects to dashboard, which restarts the progress bar
|
|
}
|
|
}
|
|
</script>
|