markdown support

This commit is contained in:
2026-01-09 09:36:52 +00:00
parent ea590dd331
commit 9098415e69
4 changed files with 629 additions and 352 deletions

View File

@@ -1,8 +1,17 @@
<script setup>
import Markdown from "@/components/quick/Markdown.vue";
const source = `
The gaussian is $\\frac{1}{\\sqrt{2\\pi}}e^{-\\frac{x^2}{2}}$.
`;
</script>
<template>
<main class="center-content flex-col">
<div class="a4page-portrait bdr-1 flex-col relative scroll-y">
<h1>These are my notes about Vue.js</h1>
<h1>Pinia</h1>
<Markdown :source="source" />
<h1>Composition API</h1>
</div>
</main>