generated from pascalmartineau/wp-skeleton
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 57s
14 lines
266 B
Vue
14 lines
266 B
Vue
<script setup lang="ts">
|
|
import type { SectionWrapperFragment } from "#graphql-operations";
|
|
|
|
defineProps<SectionWrapperFragment>();
|
|
</script>
|
|
|
|
<template>
|
|
<section :class="bgColor">
|
|
<div :class="contentWidth">
|
|
<slot />
|
|
</div>
|
|
</section>
|
|
</template>
|