mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-04-06 03:57:53 +08:00
style-guide: https://panjiachen.github.io/vue-element-admin-site/guide/advanced/style-guide.html#style-guide
37 lines
1.5 KiB
Vue
37 lines
1.5 KiB
Vue
<template>
|
|
<div class="components-container">
|
|
<code>Json-Editor is base on <a href="https://github.com/codemirror/CodeMirror" target="_blank">CodeMirrorr</a>. Lint
|
|
base on <a
|
|
href="https://github.com/codemirror/CodeMirror/blob/master/addon/lint/json-lint.js"
|
|
target="_blank"
|
|
>json-lint</a>.</code>
|
|
<div class="editor-container">
|
|
<json-editor ref="jsonEditor" v-model="value" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import JsonEditor from '@/components/JsonEditor'
|
|
|
|
const jsonData = '[{"items":[{"market_type":"forexdata","symbol":"XAUUSD"},{"market_type":"forexdata","symbol":"UKOIL"},{"market_type":"forexdata","symbol":"CORN"}],"name":""},{"items":[{"market_type":"forexdata","symbol":"XAUUSD"},{"market_type":"forexdata","symbol":"XAGUSD"},{"market_type":"forexdata","symbol":"AUTD"},{"market_type":"forexdata","symbol":"AGTD"}],"name":"贵金属"},{"items":[{"market_type":"forexdata","symbol":"CORN"},{"market_type":"forexdata","symbol":"WHEAT"},{"market_type":"forexdata","symbol":"SOYBEAN"},{"market_type":"forexdata","symbol":"SUGAR"}],"name":"农产品"},{"items":[{"market_type":"forexdata","symbol":"UKOIL"},{"market_type":"forexdata","symbol":"USOIL"},{"market_type":"forexdata","symbol":"NGAS"}],"name":"能源化工"}]'
|
|
|
|
export default {
|
|
name: 'JsonEditorDemo',
|
|
components: { JsonEditor },
|
|
data() {
|
|
return {
|
|
value: JSON.parse(jsonData)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.editor-container{
|
|
position: relative;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
|