mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-26 01:36:15 -04:00
22 lines
380 B
Vue
22 lines
380 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>
|