diff --git a/src/components/Item.vue b/src/components/Item.vue index 0397c820a..156a68390 100644 --- a/src/components/Item.vue +++ b/src/components/Item.vue @@ -32,7 +32,7 @@ import { timeAgo } from '../util/filters' export default { name: 'news-item', props: ['item'], - // https://github.com/vuejs/vue/tree/dev/packages/vue-server-renderer#component-caching + // http://ssr.vuejs.org/en/caching.html#component-level-caching serverCacheKey: ({ item: { id, __lastUpdated, time }}) => { return `${id}::${__lastUpdated}::${timeAgo(time)}` }