barebones setup
This commit is contained in:
@@ -1,12 +1,20 @@
|
||||
<template>
|
||||
<h1>My Vike app</h1>
|
||||
<p>This page is:</p>
|
||||
<ul>
|
||||
<li>Rendered to HTML.</li>
|
||||
<li>Interactive. <Counter /></li>
|
||||
</ul>
|
||||
<main class="splash">
|
||||
<svg-wordmark />
|
||||
</main>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import Counter from '../../components/Counter.vue'
|
||||
<script setup>
|
||||
import SvgWordmark from '@/components/svg/Wordmark.vue'
|
||||
</script>
|
||||
|
||||
<style>
|
||||
main.splash {
|
||||
.svg-wordmark {
|
||||
width: 70%;
|
||||
height: auto;
|
||||
margin: auto;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user