0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-05-17 05:42:06 +00:00

Finished updating remainder of JS components to new system

This commit is contained in:
Dan Brown 2022-11-16 13:04:22 +00:00
parent db79167469
commit 3b8ee3954e
No known key found for this signature in database
GPG key ID: 46D9F943C24A2EF9
25 changed files with 164 additions and 214 deletions
resources/js/components

View file

@ -4,8 +4,9 @@ import Clipboard from "../services/clipboard";
import {debounce} from "../services/util";
import {patchDomFromHtmlString} from "../services/vdom";
import DrawIO from "../services/drawio";
import {Component} from "./component";
class MarkdownEditor {
export class MarkdownEditor extends Component {
setup() {
this.elem = this.$el;
@ -619,5 +620,3 @@ class MarkdownEditor {
});
}
}
export default MarkdownEditor ;