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.
|
|
|
<template>
|
|
|
|
<div class="h-100" style="overflow: auto">
|
|
|
|
<v-container class="h-100 d-flex align-center justify-center">
|
|
|
|
<v-alert outlined color="success" icon="mdi-information-outline"> Available in Enterprise edition </v-alert>
|
|
|
|
</v-container>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import dayjs from 'dayjs';
|
|
|
|
|
|
|
|
const relativeTime = require('dayjs/plugin/relativeTime');
|
|
|
|
const utc = require('dayjs/plugin/utc');
|
|
|
|
dayjs.extend(utc);
|
|
|
|
dayjs.extend(relativeTime);
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'Audit',
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped></style>
|