public/pages/[...slug].vue

13 lines
217 B
Vue
Raw Normal View History

2022-07-21 16:50:03 -04:00
<template>
2022-07-22 15:32:00 -04:00
<ContentDoc tag="article" class="prose dark:prose-invert">
<template #not-found> Document not found </template>
</ContentDoc>
2022-07-21 16:50:03 -04:00
</template>
2022-07-22 15:36:37 -04:00
<style>
article {
width: 90%;
height: 100%;
}
</style>