Skip to content

Commit

Permalink
feat/if not modifiable, replace links with clickable links
Browse files Browse the repository at this point in the history
  • Loading branch information
fitzhavey committed May 30, 2018
1 parent 417ba41 commit ad11b38
Show file tree
Hide file tree
Showing 3 changed files with 1,678 additions and 1,663 deletions.
6 changes: 3 additions & 3 deletions index.js
Expand Up @@ -8,9 +8,9 @@ new Vue({
},
data() {
return {
sampleJSON: {"testArray": ["Just a Test String", "in a Test Array", 0, 1, true, false], "component":"vue-json-tree-view","descripton":"A JSON Tree View built in Vue.js","tags":[{"name":"vue.js"},{"name":"JSON"}],"steps":["HTML Template","Root Component","View Component",{"Transformation Logic":["Transform Objects","Transform Arrays","Transform Values"]},"Animate","Allow Options","Blog about it..."]},
sampleJSONString: "Just a Test String",
sampleJSONArray: ["Just a Test String", "in a Test Array", 0, 1, true, false],
sampleJSON: {"testArray": ["http://www.google.com", "in a Test Array", 0, 1, true, false], "component":"vue-json-tree-view","descripton":"A JSON Tree View built in Vue.js","tags":[{"name":"vue.js"},{"name":"JSON"}],"steps":["HTML Template","Root Component","View Component",{"Transformation Logic":["Transform Objects","Transform Arrays","Transform Values"]},"Animate","Allow Options","Blog about it..."]},
sampleJSONString: "http://www.google.com",
sampleJSONArray: ["http://www.google.com", "in a Test Array", 0, 1, true, false],
};
},
methods: {
Expand Down

0 comments on commit ad11b38

Please sign in to comment.