diff options
author | Remy Raes <raes.remy@gmail.com> | 2022-09-22 23:04:26 +0200 |
---|---|---|
committer | Remy Raes <raes.remy@gmail.com> | 2022-09-22 23:04:26 +0200 |
commit | 3ab7ade87ba7fb7e6f8bb2184f707e2afa979a75 (patch) | |
tree | 9a8f43c4ec39ed67985cea75661a0c0b26a80a10 /src-vue/src/components | |
parent | 6b7f92b062ab8d4ed7ccd8cc84663b9cab63ec2f (diff) | |
download | FlightCore-3ab7ade87ba7fb7e6f8bb2184f707e2afa979a75.tar.gz FlightCore-3ab7ade87ba7fb7e6f8bb2184f707e2afa979a75.zip |
refactor: remove HelloWorld vue component
Diffstat (limited to 'src-vue/src/components')
-rw-r--r-- | src-vue/src/components/HelloWorld.vue | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/src-vue/src/components/HelloWorld.vue b/src-vue/src/components/HelloWorld.vue deleted file mode 100644 index 52309103..00000000 --- a/src-vue/src/components/HelloWorld.vue +++ /dev/null @@ -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> |