it-tools/src/tools/git-memo/git-memo.vue
2022-04-18 09:16:43 +02:00

22 lines
No EOL
386 B
Vue

<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;
overflow: auto;
}
</style>