Nuxt Content 3 migration #12

Merged
eggy merged 81 commits from js into master 2022-08-10 18:38:39 -04:00
Showing only changes of commit 2722a2d75f - Show all commits

View File

@ -1,5 +1,6 @@
<script setup lang="ts">
import ColourPicker from "./ColourPicker.vue";
import IconHamburger from "@/assets/images/hamburger.svg?component";
</script>
<template>
<nav class="flex items-center justify-between">
@ -11,7 +12,9 @@ import ColourPicker from "./ColourPicker.vue";
</ul>
<div class="flex items-center">
<ColourPicker />
<div class="hamburger">HAMBURGER</div>
<div class="hamburger">
<IconHamburger />
</div>
</div>
</nav>
</template>