Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 1x 1x | <script setup lang="ts">
withDefaults(defineProps<{
as?: string;
size?: "content" | "wide" | "reading";
}>(), {
as: "div",
size: "content",
});
</script>
<template>
<component
:is="as"
class="pj-page-container"
:class="`pj-page-container--${size}`"
>
<slot />
</component>
</template>
|