mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 16:26:15 -04:00
22 lines
No EOL
386 B
Vue
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> |