32 lines
517 B
Vue
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> |