This commit is contained in:
unurled 2023-01-17 00:25:23 +01:00
parent abc34a2155
commit c6306ce99f
3 changed files with 0 additions and 56 deletions

View file

@ -1,38 +0,0 @@
<script setup lang="ts">
import { ref } from 'vue'
defineProps<{ msg: string }>()
const count = ref(0)
</script>
<template>
<h1>{{ msg }}</h1>
<div class="card">
<button type="button" @click="count++">count is {{ count }}</button>
<p>
Edit
<code>components/HelloWorld.vue</code> to test HMR
</p>
</div>
<p>
Check out
<a href="https://vuejs.org/guide/quick-start.html#local" target="_blank"
>create-vue</a
>, the official Vue + Vite starter
</p>
<p>
Install
<a href="https://github.com/johnsoncodehk/volar" target="_blank">Volar</a>
in your IDE for a better DX
</p>
<p class="read-the-docs">Click on the Vite and Vue logos to learn more</p>
</template>
<style scoped>
.read-the-docs {
color: #888;
}
</style>

View file

@ -25,8 +25,4 @@ import Link from './Link.vue';
justify-content: center;
}
.links {
}
</style>

View file

@ -4,7 +4,6 @@
line-height: 24px;
font-weight: 400;
color-scheme: light dark;
color: var(--dark-shade7);
background-color: var(--dark-shade0);
@ -66,16 +65,3 @@ button:focus-visible {
padding: 2rem;
text-align: center;
}
@media (prefers-color-scheme: light) {
:root {
color: #213547;
background-color: #ffffff;
}
a:hover {
color: #747bff;
}
button {
background-color: #f9f9f9;
}
}