| 12345678910111213141516171819202122 |
- <template lang="pug">
- img(alt="Vue logo" src="./assets/logo.png")
- hello-world(msg="Hello Vue 3 + Vite")
- </template>
-
- <script setup>
- import helloWorld from '@/components/HelloWorld.vue'
- </script>
-
- <style lang="postcss">
- @import './sss/theme.sss'
- @import './sss/variables.sss'
-
- #app
- -webkit-font-smoothing: antialiased
- -moz-osx-font-smoothing: grayscale
- text-align: center
- color: $primary
- font-family: $sans
- margin-top: $ms-2
- background-color: $secondary
- </style>
|