Files
web/app/components/common/ViewList.vue
2026-03-02 09:45:33 +07:00

10 lines
150 B
Vue

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