Files
web/app/components/common/ViewList.vue
2026-05-05 11:06:49 +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>