2023-11-15 16:09:57 +01:00

13 lines
229 B
Vue

<template>
<h1>Welcome</h1>
This page is:
<ul>
<li>Rendered to HTML.</li>
<li>Interactive. <ClickCounter /></li>
</ul>
</template>
<script lang="ts" setup>
import ClickCounter from './ClickCounter.vue'
</script>