UNPKG
simple-frame-unit
Version:
latest (1.0.6)
1.0.6
1.0.4
1.0.3
1.0.2
基于vue2 研发的与simple-data后端配合使用的组件
simple-frame-unit
/
src
/
components
/
ed-base-vue
/
package
/
EdJsonEditor
/
index.js
14 lines
(10 loc)
•
280 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** * JSON编辑器 * 依赖:jsoneditor { https://jsoneditoronline.org/} */
import
EdJsonEditor
from
'./src/EdJsonEditor.vue'
/* istanbul ignore next */
EdJsonEditor
.
install
=
function
(
Vue
) {
Vue
.
component
(
EdJsonEditor
.
name
,
EdJsonEditor
) }
export
default
EdJsonEditor