package list from viandwi24
This commit is contained in:
14
components/Page/Section/Title.vue
Normal file
14
components/Page/Section/Title.vue
Normal file
@@ -0,0 +1,14 @@
|
||||
<script lang="ts" setup>
|
||||
defineProps({
|
||||
text: {
|
||||
type: String,
|
||||
default: '',
|
||||
},
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="text-2xl font-semibold mb-2">
|
||||
<slot>{{ text }}</slot>
|
||||
</div>
|
||||
</template>
|
||||
5
components/Page/Section/index.vue
Normal file
5
components/Page/Section/index.vue
Normal file
@@ -0,0 +1,5 @@
|
||||
<template>
|
||||
<section class="lg:px-8 px-4 mb-6">
|
||||
<slot />
|
||||
</section>
|
||||
</template>
|
||||
Reference in New Issue
Block a user