Welcome to mirror list, hosted at ThFree Co, Russian Federation.

table_cell_body.vue « wrappers « components « content_editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 47cd837d0608409f9f7f697a90dbaa2b31e776b8 (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,
    },
    node: {
      type: Object,
      required: true,
    },
  },
};
</script>
<template>
  <table-cell-base cell-type="td" v-bind="$props" />
</template>