summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/content_editor/components/wrappers/table_cell_body.vue
blob: 6b4343dd5b81bd6edbacda00d717ade2c4f8a496 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<script>
import TableCellBase from './table_cell_base.vue';

export default {
  name: 'TableCellBody',
  components: {
    TableCellBase,
  },
  props: {
    editor: {
      type: Object,
      required: true,
    },
    getPos: {
      type: Function,
      required: true,
    },
  },
};
</script>
<template>
  <table-cell-base cell-type="td" v-bind="$props" />
</template>