You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
347 B
Vue
21 lines
347 B
Vue
<template>
|
|
<dv-border-box-8
|
|
:dur="0"
|
|
:color="['#83bff6', '#00CED1']"
|
|
background-color="transparent"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
import DvBorderBox8 from '@jiaminghi/data-view/lib/components/borderBox8/src/main.vue'
|
|
export default {
|
|
name: 'BorderBox8',
|
|
components: {
|
|
DvBorderBox8
|
|
},
|
|
data () {
|
|
return {}
|
|
}
|
|
}
|
|
</script>
|