feat(new tool): Markdown Cheatsheet

Markdown Cheatsheet
Fix #424 and part of #538
This commit is contained in:
sharevb 2024-04-03 23:12:06 +02:00 committed by ShareVB
parent d3b32cc14e
commit 5bcc503c56
4 changed files with 243 additions and 8 deletions

View file

@ -0,0 +1,22 @@
<script setup lang="ts">
import { useThemeVars } from 'naive-ui';
import Memo from './md-memo.content.md';
const themeVars = useThemeVars();
</script>
<template>
<div>
<Memo />
</div>
</template>
<style lang="less" scoped>
::v-deep(pre) {
margin: 0;
padding: 15px 22px;
background-color: v-bind('themeVars.cardColor');
border-radius: 4px;
overflow: auto;
}
</style>