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

table_cell.js « extensions « content_editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f437ce066cf9acdc2758b7b1ab7aaab107493b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { TableCell } from '@tiptap/extension-table-cell';
import { VueNodeViewRenderer } from '@tiptap/vue-2';
import TableCellBodyWrapper from '../components/wrappers/table_cell_body.vue';

export default TableCell.extend({
  content: 'block+',

  addNodeView() {
    return VueNodeViewRenderer(TableCellBodyWrapper);
  },
});