mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
21 lines
428 B
Vue
21 lines
428 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<h1>Cached components</h1>
|
||
|
<p>Look at the source code and see how the timestamp is not reloaded before 10s after refreshing the page.</p>
|
||
|
<p>Timestamp: {{ date }}</p>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'date',
|
||
|
serverCacheKey () {
|
||
|
// Will change every 10 secondes
|
||
|
return Math.floor(Date.now() / 10000)
|
||
|
},
|
||
|
data () {
|
||
|
return { date: Date.now() }
|
||
|
}
|
||
|
}
|
||
|
</script>
|