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.

12345678910111213141516171819202122
  1. <template lang="pug">
  2. img(alt="Vue logo" src="./assets/logo.png")
  3. hello-world(msg="Hello Vue 3 + Vite")
  4. </template>
  5. <script setup>
  6. import helloWorld from '@/components/HelloWorld.vue'
  7. </script>
  8. <style lang="postcss">
  9. @import './sss/theme.sss'
  10. @import './sss/variables.sss'
  11. #app
  12. -webkit-font-smoothing: antialiased
  13. -moz-osx-font-smoothing: grayscale
  14. text-align: center
  15. color: $primary
  16. font-family: $sans
  17. margin-top: $ms-2
  18. background-color: $secondary
  19. </style>