Skip to content

Commit 8f1e422

Browse files
committed
feat release 1.6.5
1 parent 0d48ac0 commit 8f1e422

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

example/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ export default {
243243
},
244244
customLinkFormatter (data, key, parent, defaultFormatted) {
245245
if (data.startsWith('http://')) {
246-
return `<a style="color:red;" href="${data}">"${data}"</a>`;
246+
return `<a style="color:red;" href="${data}" target="_blank">"${data}"</a>`;
247247
} else {
248248
return defaultFormatted;
249249
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-json-pretty",
3-
"version": "1.6.4",
3+
"version": "1.6.5",
44
"description": "A JSON tree view component that is easy to use and also supports data selection.",
55
"author": "leezng <[email protected]>",
66
"main": "vue-json-pretty.js",

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ import App from './components/app.vue'
22
import './assets/less/index.less'
33

44
export default Object.assign({}, App, {
5-
version: '1.6.4'
5+
version: '1.6.5'
66
})

0 commit comments

Comments
 (0)