You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
869 B
52 lines
869 B
2 years ago
|
<script setup>
|
||
|
import { ref } from 'vue';
|
||
|
|
||
|
defineProps({
|
||
|
msg: { type: String, default: '' },
|
||
|
});
|
||
|
|
||
|
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/vuejs/language-tools"
|
||
|
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>
|