yudao-dev/src/views/databoard/components/ScrollBoard.vue
2024-01-08 16:59:42 +08:00

32 lines
517 B
Vue

<template>
<div class="scroll-board-container">
<dv-scroll-board :config="config" :style="{'width':width,'height':height}" :ref='id'/>
</div>
</template>
<script>
export default {
name: 'ScrollBoard',
props: {
config: {
type: Object,
default: () => ({})
},
width:{
type: String,
default: '600px'
},
height:{
type: String,
default: '380px'
},
id:{
type: String,
default: ''
}
},
data() {
return {
}
}
}
</script>