index.vue 435 B

123456789101112131415
  1. <template>
  2. <div>
  3. <nav class="border-b border-slate-200 px-5 py-2 flex items-center justify-between">
  4. <h1 class="text-2xl font-bold">Nuxt3 in Action</h1>
  5. <img class="w-[50px] border-[1px] border-slate-300 rounded-full inline-block" src="~/public/image/bgc-img.png"
  6. alt="avatar" />
  7. </nav>
  8. <NButton>hello</NButton>
  9. </div>
  10. </template>
  11. <style scoped lang="scss">
  12. p {
  13. color: var(--link-color)
  14. }
  15. </style>