diff options
author | 2023-05-28 23:13:24 +0200 | |
---|---|---|
committer | 2023-05-28 23:29:14 +0200 | |
commit | 33c9b6643f58a6930043f460d5bfdca4bc1f7222 (patch) | |
tree | f313935e30f7b90ea16e564e7171e2e72319ce29 /src/tools/git-memo/git-memo.vue | |
parent | 4d2b037dbe4e78aa90a4a6d9c7315dcf0a51fed9 (diff) | |
download | it-tools-33c9b6643f58a6930043f460d5bfdca4bc1f7222.tar.gz it-tools-33c9b6643f58a6930043f460d5bfdca4bc1f7222.tar.zst it-tools-33c9b6643f58a6930043f460d5bfdca4bc1f7222.zip |
chore(lint): switched to a better lint config
Diffstat (limited to 'src/tools/git-memo/git-memo.vue')
-rw-r--r-- | src/tools/git-memo/git-memo.vue | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/tools/git-memo/git-memo.vue b/src/tools/git-memo/git-memo.vue index 8d85e99..bad8440 100644 --- a/src/tools/git-memo/git-memo.vue +++ b/src/tools/git-memo/git-memo.vue @@ -1,9 +1,3 @@ -<template> - <div> - <memo /> - </div> -</template> - <script setup lang="ts"> import { useThemeVars } from 'naive-ui'; import Memo from './git-memo.md'; @@ -11,6 +5,12 @@ import Memo from './git-memo.md'; const themeVars = useThemeVars(); </script> +<template> + <div> + <Memo /> + </div> +</template> + <style lang="less" scoped> ::v-deep(pre) { margin: 0; |