Files
web/app/components/datatable/ViewList.vue
2026-06-09 15:09:42 +07:00

14 lines
170 B
Vue

<template>
<div>
<DataView
v-if="vbind"
v-bind="vbind"
></DataView>
</div>
</template>
<script>
export default {
props: ["vbind"],
};
</script>