2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-22 10:30:34 +03:00
This commit is contained in:
Jeff Sagal
2022-07-26 22:20:24 -07:00
parent 6d59e6fd02
commit f602913216
23 changed files with 189 additions and 184 deletions
+10 -12
View File
@@ -1,19 +1,17 @@
<script setup lang="ts">
import { useHead } from "#head";
import Hero from "~/components/Hero.vue";
import ApplicationHeader from "~/components/ApplicationHeader.vue";
import SidebarNavigation from "~/components/SidebarNavigation.vue";
import PageContent from "~/components/PageContent.vue";
import { useContent } from "#imports";
import { useHead } from '#head'
import Hero from '~/components/Hero.vue'
import ApplicationHeader from '~/components/ApplicationHeader.vue'
import SidebarNavigation from '~/components/SidebarNavigation.vue'
import PageContent from '~/components/PageContent.vue'
import { useContent } from '#imports'
useHead({
title: "Vue Select",
bodyAttrs: {
class: "bg-white dark:bg-slate-900",
},
});
title: 'Vue Select',
bodyAttrs: { class: 'bg-white dark:bg-slate-900' },
})
const { page } = useContent();
const { page } = useContent()
</script>
<template>