mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 10:26:44 +00:00
12 lines
252 B
Vue
12 lines
252 B
Vue
<script lang="ts" setup>
|
|
const { appInfo } = useGlobal()
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<div class="flex items-center text-xs text-nc-content-gray-disabled px-3 py-1">
|
|
<span>Version {{ appInfo.version }}</span>
|
|
</div>
|
|
</div>
|
|
</template>
|