Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/assets/vue/components/session/Tabs.vue

17 lines
383 B

<template>
<q-tabs align="left" dense inline-label no-caps>
<q-route-tab :to="{name: 'MySessionsPast'}" :label="$t('Past')"/>
<q-route-tab :to="{name: 'MySessions'}" :label="$t('Current')"/>
<q-route-tab :to="{name: 'MySessionsUpcoming'}" :label="$t('Upcoming')"/>
</q-tabs>
</template>
<script>
export default {
name: 'SessionTabs',
setup() {
}
}
</script>