mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 06:56:51 +00:00
12 lines
138 B
Vue
12 lines
138 B
Vue
<script lang="ts" setup>
|
|
interface Props {
|
|
workspaceId?: string
|
|
}
|
|
|
|
defineProps<Props>()
|
|
</script>
|
|
|
|
<template>
|
|
<div></div>
|
|
</template>
|