aboutsummaryrefslogtreecommitdiff
path: root/src/tools/git-memo/git-memo.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/git-memo/git-memo.vue')
-rw-r--r--src/tools/git-memo/git-memo.vue21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/tools/git-memo/git-memo.vue b/src/tools/git-memo/git-memo.vue
new file mode 100644
index 0000000..5848ac4
--- /dev/null
+++ b/src/tools/git-memo/git-memo.vue
@@ -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> \ No newline at end of file