123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <script setup lang="ts">
- import { reactive, watch } from "vue";
- import "vue-json-pretty/lib/styles.css";
- import VueJsonPretty from "vue-json-pretty";
- defineOptions({
- name: "JsonEditor"
- });
- const defaultData = {
- status: 200,
- text: "",
- error: null,
- config: undefined,
- data: [
- {
- news_id: 51184,
- title: "iPhone X Review: Innovative future with real black technology",
- source: "Netease phone"
- },
- {
- news_id: 51183,
- title:
- "Traffic paradise: How to design streets for people and unmanned vehicles in the future?",
- source: "Netease smart",
- link: "http://netease.smart/traffic-paradise/1235"
- },
- {
- news_id: 51182,
- title:
- "Teslamask's American Business Relations: The government does not pay billions to build factories",
- source: "AI Finance",
- members: ["Daniel", "Mike", "John"]
- }
- ]
- };
- const state = reactive({
- val: JSON.stringify(defaultData),
- data: defaultData,
- showLine: true,
- showLineNumber: true,
- showDoubleQuotes: true,
- showLength: true,
- editable: true,
- showIcon: true,
- editableTrigger: "click",
- deep: 3
- });
- watch(
- () => state.val,
- newVal => {
- try {
- state.data = JSON.parse(newVal);
- } catch (err) {
- // console.log('JSON ERROR');
- }
- }
- );
- watch(
- () => state.data,
- newVal => {
- try {
- state.val = JSON.stringify(newVal);
- } catch (err) {
- // console.log('JSON ERROR');
- }
- }
- );
- </script>
- <template>
- <el-card shadow="never">
- <template #header>
- <div class="card-header">
- <span class="font-medium">
- JSON编辑器,采用开源的
- <el-link
- href="https://github.com/leezng/vue-json-pretty"
- target="_blank"
- style="margin: 0 4px 5px; font-size: 16px"
- >
- vue-json-pretty
- </el-link>
- (支持大数据量)。
- </span>
- <span class="font-medium">
- 当然还有一款代码编辑器推荐(这里就不做演示了),采用开源的
- <el-link
- href="https://github.com/surmon-china/vue-codemirror"
- target="_blank"
- style="margin: 0 4px 5px; font-size: 16px"
- >
- codemirror6
- </el-link>
- </span>
- </div>
- <el-link
- class="mt-2"
- href="https://github.com/pure-admin/vue-pure-admin/blob/main/src/views/components/json-editor.vue"
- target="_blank"
- >
- 代码位置 src/views/components/json-editor.vue
- </el-link>
- </template>
- <vue-json-pretty
- v-model:data="state.data"
- :deep="state.deep"
- :show-double-quotes="state.showDoubleQuotes"
- :show-line="state.showLine"
- :show-length="state.showLength"
- :show-icon="state.showIcon"
- :show-line-number="state.showLineNumber"
- :editable="state.editable"
- :editable-trigger="state.editableTrigger as any"
- />
- </el-card>
- </template>
|