[READ-ONLY] Mirror of https://github.com/danielroe/netlify-dynamic-builder.
410 B
17 lines
1<template>
2 <div>
3 <strong>Path</strong>: {{ $route.path }}
4 <br />
5 <strong>Generated at</strong>: {{ timestamp }}
6 <br />
7 <ul>
8 <li><a href="/blog/test">Fully static page</a></li>
9 <li><a href="/articles">TTL of a minute</a></li>
10 <li><a href="/">Fully dynamic SSR</a></li>
11 </ul>
12 </div>
13</template>
14
15<script setup>
16const timestamp = useState(() => Date.now())
17</script>