App.vue 570 B

123456789101112131415161718192021
  1. <script setup lang="ts">
  2. // This starter template is using Vue 3 <script setup> SFCs
  3. // Check out https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup
  4. import HelloWorld from './components/HelloWorld.vue'
  5. </script>
  6. <template>
  7. <img alt="Vue logo" src="./assets/logo.png" />
  8. <HelloWorld msg="Hello Vue 3 + TypeScript + Vite" />
  9. </template>
  10. <style>
  11. #app {
  12. font-family: Avenir, Helvetica, Arial, sans-serif;
  13. -webkit-font-smoothing: antialiased;
  14. -moz-osx-font-smoothing: grayscale;
  15. text-align: center;
  16. color: #2c3e50;
  17. margin-top: 60px;
  18. }
  19. </style>