mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-19 04:14:04 +00:00
17 lines
224 B
Vue
17 lines
224 B
Vue
<template>
|
|
<card :title="$t('home')">
|
|
This is admin
|
|
</card>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
middleware: 'auth',
|
|
middleware: 'admin',
|
|
|
|
metaInfo () {
|
|
return { title: this.$t('home') }
|
|
}
|
|
}
|
|
</script>
|