Auto Refresh

This is a sample for polling the server to keep the data up-to-date.

{
 "utc_offset": "+00:00",
 "timezone": "UTC",
 "day_of_week": 1,
 "day_of_year": 132,
 "datetime": "2025-05-12T16:00:57.144602+00:00",
 "utc_datetime": "2025-05-12T16:00:57.144602+00:00",
 "unixtime": 1747065657,
 "raw_offset": 0,
 "week_number": 20,
 "dst": false,
 "abbreviation": "UTC",
 "dst_offset": 0,
 "dst_from": null,
 "dst_until": null,
 "client_ip": "203.152.198.136"
}
  
vue
<template>
 <ViewState
  v-slot="users"
  src="worldtime://timezone/UTC"
 >
  <JsonView :data="users.data" />
 </ViewState>
</template>