16 lines
275 B
Vue
16 lines
275 B
Vue
|
|
<script setup lang="ts">
|
||
|
|
import type { BaseControl } from '@/components/inspector/controls'
|
||
|
|
|
||
|
|
defineProps<{
|
||
|
|
control: BaseControl
|
||
|
|
}>()
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<div class="tw:col-span-full">
|
||
|
|
Not Implemented: {{ control.kind }}
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<style scoped></style>
|