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