13 lines
256 B
Vue
13 lines
256 B
Vue
<template>
|
|
<h1>My Vike app</h1>
|
|
<p>This page is:</p>
|
|
<ul>
|
|
<li>Rendered to HTML.</li>
|
|
<li>Interactive. <Counter /></li>
|
|
</ul>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Counter from '../../components/Counter.vue'
|
|
</script>
|