[add] vuetify
This commit is contained in:
parent
f73523c327
commit
d6b4e97c4f
2 changed files with 19 additions and 7 deletions
|
|
@ -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())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue