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