App.vue 435 B

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