Nuxt/packages/ui-templates/index.html

15 lines
349 B
HTML
Raw Normal View History

2021-12-22 13:04:06 +00:00
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/petite-vue" defer init></script>
<script type="module" src="/styles.ts"></script>
</head>
<body v-scope='{{ data }}'>
<ul>
<li v-for="name in templateNames">
<a :href="`/templates/${name}`">{{ name }}</a>
</li>
</ul>
</body>
</html>