admin.vue 459 B

1234567891011121314151617181920
  1. <template>
  2. <div>
  3. <adminStudent></adminStudent>
  4. </div>
  5. </template>
  6. <script setup>
  7. import { ref, onMounted } from 'vue';
  8. import adminStudent from '@/components/admin/adminStudent.vue'
  9. import { userInfoStore, userCurrentRole } from '@/stores/counter'
  10. const InfoStore = userInfoStore()
  11. const CurrentRole = userCurrentRole()
  12. // const menuSelect = e => {
  13. // console.log(e)
  14. // }
  15. onMounted(() => {
  16. })
  17. </script>
  18. <style lang="scss" scoped></style>