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.
25 lines
531 B
25 lines
531 B
4 years ago
|
<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>
|