vanilla-vue-ui 0.0.28 → 0.0.30
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.
package/package.json
CHANGED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<slot name="header" />
|
|
4
|
+
|
|
5
|
+
<w-page-container-wide>
|
|
6
|
+
<div class="bg-white mt-6 p-4 border-2 border-black rounded-2xl">
|
|
7
|
+
<w-spacer-island>
|
|
8
|
+
<slot name="ad" />
|
|
9
|
+
</w-spacer-island>
|
|
10
|
+
|
|
11
|
+
<w-spacer-island>
|
|
12
|
+
<slot name="title" />
|
|
13
|
+
</w-spacer-island>
|
|
14
|
+
|
|
15
|
+
<slot name="meta" />
|
|
16
|
+
|
|
17
|
+
<div class="grid grid-cols-1 md:grid-cols-[1fr_250px] gap-4">
|
|
18
|
+
<main class="min-w-0">
|
|
19
|
+
<slot />
|
|
20
|
+
</main>
|
|
21
|
+
|
|
22
|
+
<aside>
|
|
23
|
+
<div class="sticky top-4 w-full">
|
|
24
|
+
<slot name="sidebar" />
|
|
25
|
+
</div>
|
|
26
|
+
</aside>
|
|
27
|
+
</div>
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
<w-spacer-island>
|
|
31
|
+
<slot name="bottom" />
|
|
32
|
+
</w-spacer-island>
|
|
33
|
+
</w-page-container-wide>
|
|
34
|
+
|
|
35
|
+
<slot name="footer" />
|
|
36
|
+
</div>
|
|
37
|
+
</template>
|
|
38
|
+
|
|
39
|
+
<script setup lang="ts">
|
|
40
|
+
import WSpacerIsland from '../spacer-island/WSpacerIsland.vue'
|
|
41
|
+
import WPageContainerWide from '../page-container-wide/WPageContainerWide.vue'
|
|
42
|
+
</script>
|