【vuepress基础】 默认主题和基础配置
wenking 7/13/2023 vuepress
Vuepress 应用基本配置
# 容器
- 输入
::: tip
这是一个提示
:::
::: warning
这是一个警告
:::
::: danger
这是一个危险警告
:::
::: details
这是一个详情块,在 IE / Edge 中不生效
:::
::: danger STOP
危险区域,禁止通行
:::
::: details 点击查看代码
console.log('你好,VuePress!')
:::
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
- 输出
这是一个提示
这是一个警告
这是一个危险警告
See More
这是一个详情块,在 IE / Edge 中不生效
STOP
危险区域,禁止通行
点击查看代码
console.log('你好,VuePress!')
1