diff options
author | Remy Raes <contact@remyraes.com> | 2022-09-20 23:32:20 +0200 |
---|---|---|
committer | Remy Raes <contact@remyraes.com> | 2022-09-20 23:32:20 +0200 |
commit | 2e622c0989f6abe35e6d8bbd20d523a37e87d923 (patch) | |
tree | d18f89016cadffb27bcdd07199f1eceaadb6b00b /src-vue/src/components | |
parent | f9e6bf91e6d0f5928e036350c09aed1d35fae36d (diff) | |
download | FlightCore-2e622c0989f6abe35e6d8bbd20d523a37e87d923.tar.gz FlightCore-2e622c0989f6abe35e6d8bbd20d523a37e87d923.zip |
build: add Vue app skeleton
Diffstat (limited to 'src-vue/src/components')
-rw-r--r-- | src-vue/src/components/HelloWorld.vue | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src-vue/src/components/HelloWorld.vue b/src-vue/src/components/HelloWorld.vue new file mode 100644 index 00000000..52309103 --- /dev/null +++ b/src-vue/src/components/HelloWorld.vue @@ -0,0 +1,38 @@ +<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> |