16 lines
348 B
Vue
16 lines
348 B
Vue
<script setup lang="ts">
|
|
import { onMounted, onUpdated } from 'vue'
|
|
import { updateDynamicContent } from '@lib/articles'
|
|
import { html } from '@articles/about.md'
|
|
|
|
onMounted(updateDynamicContent)
|
|
onUpdated(updateDynamicContent)
|
|
</script>
|
|
|
|
<template>
|
|
<div class="article">
|
|
<div v-html="html"></div>
|
|
<BackHomeButton />
|
|
</div>
|
|
</template>
|