[add] vuetify

This commit is contained in:
Andy Bunce 2022-01-07 20:48:31 +00:00
parent f73523c327
commit d6b4e97c4f
2 changed files with 19 additions and 7 deletions

View file

@ -4,7 +4,8 @@ var app = new Vue({
data: {
message: 'Hello Vue!',
json: null,
hits:0
hits:0,
loaded: null
},
filters: {
pretty: function(value) {
@ -13,6 +14,7 @@ var app = new Vue({
},
methods:{
load() {
this.loaded = new Date()
this.hits += 1
fetch("links.json")
.then(response => response.json())