12 lines
157 B
Vue
12 lines
157 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
layout: "blog",
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<main class="p-5 bg-white">
|
|
<ContentDoc />
|
|
</main>
|
|
</template>
|