This commit is contained in:
Andy Bunce 2022-01-07 22:03:32 +00:00
parent 73954c66ec
commit de1b567cc1
1 changed files with 2 additions and 2 deletions

View File

@ -12,10 +12,10 @@
</head> </head>
<body> <body>
<div id="app"> <div id="app">
<v-icon title="Loaded at: {{ loaded }}">clock-outline</v-icon> <v-icon :title="'Loaded at: ' + loaded">clock-outline</v-icon>
<span>Loaded at: {{ loaded }}</span> <span>Loaded at: {{ loaded }}</span>
<ul> <ul>
<li v-for="item in json"><a :href="item.href">{{ item.text }}</a></li> <li v-for="item in links"><a :href="item.href">{{ item.text }}</a></li>
</ul> </ul>
<v-btn v-on:click="load">hits {{ hits }}</v-btn> <v-btn v-on:click="load">hits {{ hits }}</v-btn>