mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-03 14:17:17 +00:00
13 lines
188 B
Vue
13 lines
188 B
Vue
<script lang="ts" setup>
|
|
const emit = defineEmits(['mounted'])
|
|
const attrs = useAttrs()
|
|
|
|
onMounted(() => {
|
|
emit('mounted')
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<slot v-bind="attrs" />
|
|
</template>
|