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.
27 lines
544 B
27 lines
544 B
4 years ago
|
<template>
|
||
|
<div class="h-100" style="overflow: auto">
|
||
|
<v-container class="h-100 d-flex align-center justify-center">
|
||
3 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>
|
||
3 years ago
|
import dayjs from 'dayjs'
|
||
4 years ago
|
|
||
|
const relativeTime = require('dayjs/plugin/relativeTime')
|
||
|
const utc = require('dayjs/plugin/utc')
|
||
|
dayjs.extend(utc)
|
||
|
dayjs.extend(relativeTime)
|
||
|
|
||
|
export default {
|
||
3 years ago
|
name: 'Audit'
|
||
4 years ago
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|