feat(tool): git memo

This commit is contained in:
Corentin Thomasset 2022-04-12 13:24:14 +02:00
parent 889d594992
commit 5cd9997a84
No known key found for this signature in database
GPG key ID: 3103EB5E79496F9C
11 changed files with 504 additions and 18 deletions

View file

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