17 lines
317 B
Vue
17 lines
317 B
Vue
<template>
|
|
<RestPane :slotter="slotter">
|
|
<DataViewSlot />
|
|
</RestPane>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import type { Slotter } from 'open-data-v/data'
|
|
import { RestPane } from 'open-data-v/data/rest'
|
|
|
|
import DataViewSlot from './DynamicExtendContent.vue'
|
|
|
|
defineProps<{
|
|
slotter: Slotter
|
|
}>()
|
|
</script>
|