Commit 5501cc6b0be2fe5a6af3af4b90a9bab815dcc60b

Authored by ly525
1 parent d9950054

fix(editor): import Element in core editor

front-end/h5/src/components/core/editor.js
1 1 import Vue from 'vue'
  2 +import Element from './models/element'
2 3  
3 4 export default {
4 5 name: 'Editor',
... ...
front-end/h5/src/views/Editor.vue
... ... @@ -4,8 +4,6 @@ import CoreEditor from '../components/core/editor'
4 4  
5 5 import LbpButton from '../components/plugins/lbp-button'
6 6  
7   -import Element from '../components/core/models/element'
8   -
9 7 const PluginList = [
10 8 {
11 9 title: '按钮',
... ...