mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-03 14:26:50 +00:00
12 lines
185 B
Vue
12 lines
185 B
Vue
<script lang="ts" setup>
|
|
interface Props {}
|
|
|
|
withDefaults(defineProps<Props>(), {})
|
|
</script>
|
|
|
|
<template>
|
|
<span class="hidden"></span>
|
|
</template>
|
|
|
|
<style lang="scss" scoped></style>
|