Skip to content

Commit

Permalink
release: v0.10.18
Browse files Browse the repository at this point in the history
  • Loading branch information
cloydlau committed Sep 30, 2023
1 parent 7bac743 commit 0218a67
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 30 deletions.
28 changes: 15 additions & 13 deletions demo/vue2.6/index.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script>
import Vue from 'vue'
import VueCompositionAPI from '@vue/composition-api'
import JsonEditorVue from '../../src'
import JsonEditorVue from 'json-editor-vue'
Vue.use(VueCompositionAPI)
Expand All @@ -10,18 +10,20 @@ export default {
data() {
return {
version: Vue.version,
value: {
bigint: 124124124124124124124n,
boolean: true,
string: 'Hello World',
number: 123.456,
color: '#b0a4e3',
null: null,
time: 1575599819000,
array: [1, 2],
object: {
a: 'b',
c: 'd',
data: {
value: {
// bigint: 124124124124124124124n,
boolean: true,
string: 'Hello World',
number: 123.456,
color: '#b0a4e3',
null: null,
time: 1575599819000,
array: [1, 2],
object: {
a: 'b',
c: 'd',
},
},
},
mode: undefined,
Expand Down
4 changes: 2 additions & 2 deletions demo/vue2.7/index.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<script setup>
import { onMounted, reactive, ref, version } from 'vue'
import JsonEditorVue from '../../src'
import JsonEditorVue from 'json-editor-vue'
const data = reactive({
value: {
bigint: 124124124124124124124n,
// bigint: 124124124124124124124n,
boolean: true,
string: 'Hello World',
number: 123.456,
Expand Down
4 changes: 2 additions & 2 deletions demo/vue3/index.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<script setup lang="ts">
import { onMounted, reactive, ref, version } from 'vue'
import { parse, stringify } from 'lossless-json'
import JsonEditorVue from '../../src'
import type { Mode } from '../../src'
import JsonEditorVue from 'json-editor-vue'
import type { Mode } from 'json-editor-vue'
const console = window.console
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "json-editor-vue",
"PascalCasedName": "JsonEditorVue",
"version": "0.10.17",
"version": "0.10.18",
"private": false,
"description": "Vue 2.6/2.7/3 & Nuxt 2/3 all-in-one JSON editor, viewer, formatter and validator.",
"author": "Cloyd Lau",
Expand Down
24 changes: 12 additions & 12 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0218a67

Please sign in to comment.