集成轻量且优雅的语法高亮库「
prismjs
」「
HTML
」及「JS
」无需额外引入,直接使用即可其他语言的高亮显示,需要引入对应的语言组件,所有组件文件在「
node_modules/prismjs/components/**
」
<!-- python -->
<template>
<mi-code language="python" :content="code" />
</template>
<script setup lang="ts">
import 'prismjs/components/prism-python.js'
const code = `
import time
# 格式化显示时间
def getTime():
return time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
# .......
`
</script>
请查看 「
主题配置
」组件
Token | 默认值 |
---|---|
--mi-code-scrollbar |
--mi-primary |
--mi-code-background |
--mi-background |
--mi-code-border |
--mi-background |
--mi-code-dot-red |
--mi-primary |
--mi-code-dot-orange |
--mi-secondary |
--mi-code-dot-green |
--mi-tertiary |
参数 | 类型 | 默认值 | 说明 |
---|---|---|---|
language |
string |
html |
语言 |
content |
string | vSlot |
'' |
内容 |