@@ -0,0 +1,18 @@
+<script>
+export default {
+ props: {
+ render: {
+ type: Function,
+ default: () => () => { }
+ },
+ scope: {
+ type: Object,
+ default: () => { }
+ }
+ render(h) {
+ const { row, column, value, colIndex } = this.scope;
+ return this.render(h, row, column, value, colIndex);
+}
+</script>