mirror of
https://github.com/IT4Change/boilerplate-frontend.git
synced 2025-12-13 07:35:53 +00:00
13 lines
229 B
Vue
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>
|