代码
语法高亮
javascript/typescript/js/ts/vuehtml/jsx/tsxcss/less/scssjson/yaml/ymlmarkdown/md/mdxgraphql/gqltext/txt/plaindartansish
javascript
export default {
name: 'MyComponent'
// ...
}typescript
export default {
name: 'MyComponent'
// ...
}html
<ul>
<li v-for="todo in todos" :key="todo.id">
{{ todo.text }}
</li>
</ul>jsx
export default function () {
return (
<ul>
<li v-for="todo in todos" :key="todo.id">
{{ todo.text }}
</li>
</ul>
);
}css
.text-center {
text-align: center;
}less
.text {
&-center {
text-align: center;
}
}vue
<template>
<ul>
<li v-for="todo in todos" :key="todo.id">
{{ todo.text }}
</li>
</ul>
</template>
<script>
export default {
name: 'MyComponent'
// ...
}
</script>
<style>
.text-center {
text-align: center;
}
</style>json
{
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
}代码行高亮及编号
- 编号
:line-numbers行号:line-numbers=2设置行号起始值,从2开始编号
- 高亮
{4}单行{6-8}多行// [!code highlight]单行
- 聚焦
// [!code focus]单行聚焦它并模糊代码的其他部分// [!code focus:<lines>]指定多行聚焦它并模糊代码的其他部分
- diff
// [!code --]为该行创建 diff,同时保留代码块的颜色// [!code ++]为该行创建 diff,同时保留代码块的颜色
- 背景色
// [!code warning]添加“警告”背景色// [!code error]添加“错误”背景色
js
export default {
data () {
return {
msg: `Highlighted!
This line isn't highlighted,
but this and the next 2 are.`,
motd: 'VitePress is awesome',
lorem: 'ipsum'
}
}
}导入代码片段
<<< @/filepath{highlightLines}导入代码片段,同时支持行高亮
<<< ../demos/demo.vue{3}vue
<template>
<div>当前计数为:{{ count }}</div>
<br />
<button @click="count++">点我!</button>
</template>
<script setup>
import { ref } from 'vue';
const count = ref(0);
</script>组件预览
不支持实时编辑。
- title
- description
:::preview [title] || [description]当前计数为:0
demo.vue
Vue SFC 组件预览
<template>
<div>当前计数为:{{ count }}</div>
<br />
<button @click="count++">点我!</button>
</template>
<script setup>
import { ref } from 'vue';
const count = ref(0);
</script>组件即时编辑预览
仅支持选项式 API(setup() 写法),不支持 setup 语法糖写法。
- column
- height:400
:::demo column height:400组件即时编辑预览(iframe)
iframe 模式。支持 选项式 API(Options) 和 响应式 API(Composition)。但只能配置在 vite.config.ts 文件中,否则报错。
``` vue preview ```