kmcom-nuxt-layers 1.1.3 → 1.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<script lang="ts" setup>
|
|
2
|
+
const appConfig = useAppConfig()
|
|
3
|
+
const title = appConfig.site?.title ?? 'Site Title'
|
|
4
|
+
</script>
|
|
5
|
+
|
|
6
|
+
<template>
|
|
7
|
+
<UHeader :title />
|
|
8
|
+
</template>
|
|
9
|
+
|
|
10
|
+
<!-- <template #toggle>
|
|
11
|
+
<MastNav />
|
|
12
|
+
</template> -->
|
|
13
|
+
|
|
14
|
+
<!-- :ui="{
|
|
15
|
+
root: 'bg-default static border-0',
|
|
16
|
+
container: 'w-full max-w-full',
|
|
17
|
+
title: 'text-primary flex-col text-pretty text-6xl leading-8 antialiased',
|
|
18
|
+
}" -->
|