lightlimx-website/middleware/authenticated.js

10 lines
230 B
JavaScript
Raw Normal View History

2024-07-10 14:57:22 +08:00
export default function ({ store, redirect }) {
// If the user is not authenticated
// if (store.state.loading) {
// return redirect('/loading')
// }
// if (!store.state.loading) {
// return redirect('/')
// }
}