check parse
This commit is contained in:
parent
6034258c2f
commit
61a1fbe6a0
Binary file not shown.
|
@ -53,6 +53,16 @@ async function getJson(url) {
|
||||||
|
|
||||||
let db2 = getJson(jsonurl)
|
let db2 = getJson(jsonurl)
|
||||||
|
|
||||||
|
|
||||||
|
fetch(jsonurl)
|
||||||
|
.then(result => result.json())
|
||||||
|
.then((output) => {
|
||||||
|
console.log('Output: ', output);
|
||||||
|
|
||||||
|
}).catch(err => console.error(err));
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
let vm = new Vue({
|
let vm = new Vue({
|
||||||
el: '#root',
|
el: '#root',
|
||||||
data: {
|
data: {
|
||||||
|
|
Loading…
Reference in New Issue