admin.vue 424 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div>
  3. <AdminNavbar />
  4. <v-app>
  5. <Nuxt />
  6. </v-app>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. layout: "admin",
  12. created() {
  13. const auth = this.$store.state.auth;
  14. if (!auth.loggedIn) {
  15. this.$router.push("/user/authorization");
  16. } else if (auth.user && !auth.user.is_allow_acess_to_admin_page) {
  17. this.$router.push("/");
  18. }
  19. },
  20. };
  21. </script>
  22. <style>
  23. </style>