10 lines
150 B
Vue
10 lines
150 B
Vue
<template>
|
|
<div>
|
|
<DataView v-if="vbind" v-bind="vbind"></DataView>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: ['vbind']
|
|
}
|
|
</script> |