进阶
内置
定制
简体中文 (v0.49.29)
Appearance
TwoSlash 是一个强大的工具,用于在悬停或内联时呈现带有类型信息的 TypeScript 代码块。它对于为 JavaScript/TypeScript 相关主题准备幻灯片非常有用。
要使用它,你可以在代码块的 语言id 中添加 twoslash:
twoslash
```ts twoslash import { ref } from 'vue' const count = ref(0) // ^? ```
它会被渲染为:
import { ref } from 'vue' const count = ref(0)