diff options
author | 2022-04-22 23:31:40 +0200 | |
---|---|---|
committer | 2022-04-22 23:31:40 +0200 | |
commit | 086d31eab5b3b1a927803eab5e650585f61abe19 (patch) | |
tree | 7c6b14d08370694f24d2b967343b37b16271bf3c /src/tools/git-memo/git-memo.vue | |
parent | 8e29a97404ea0aa9b9b576656358c8c276b6f992 (diff) | |
download | it-tools-086d31eab5b3b1a927803eab5e650585f61abe19.tar.gz it-tools-086d31eab5b3b1a927803eab5e650585f61abe19.tar.zst it-tools-086d31eab5b3b1a927803eab5e650585f61abe19.zip |
refactor(lint): linter auto fix
Diffstat (limited to 'src/tools/git-memo/git-memo.vue')
-rw-r--r-- | src/tools/git-memo/git-memo.vue | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/tools/git-memo/git-memo.vue b/src/tools/git-memo/git-memo.vue index d1b45d5..c32415f 100644 --- a/src/tools/git-memo/git-memo.vue +++ b/src/tools/git-memo/git-memo.vue @@ -5,18 +5,18 @@ </template> <script setup lang="ts"> -import Memo from './git-memo.md' -import { useThemeVars } from 'naive-ui' +import Memo from './git-memo.md'; +import { useThemeVars } from 'naive-ui'; -const themeVars = useThemeVars() +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; + margin: 0; + padding: 15px 22px; + background-color: v-bind('themeVars.cardColor'); + border-radius: 4px; + overflow: auto; } -</style>
\ No newline at end of file +</style> |