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
25 changed files with 164 additions and 214 deletions

View File

@ -1,6 +1,7 @@
import {build as buildEditorConfig} from "../wysiwyg/config";
import {Component} from "./component";
class WysiwygEditor {
export class WysiwygEditor extends Component {
setup() {
this.elem = this.$el;
@ -35,6 +36,4 @@ class WysiwygEditor {
return '';
}
}
export default WysiwygEditor;
}