Name Last Update
..
README.md Loading commit data...
version300.md Loading commit data...
version320.md Loading commit data...

::: tip 监控版本 代码分支:5.2.0 (陆续开放中,2022-06-22完成)
版本相关包:svn://192.168.0.70/版本管理/2.version/aview.5.2.0(陆续开放中,2022-06-22完成) :::

序号 功能 详情
1 监控系统稳定性 5.2.0版本累计修复BUG300+
2 各个现场支撑 29次
3 功能点开发 10个

::: tip 首页明确统计规则展示 在右上角展示统计规则 ::: img

::: warning 这是一个警告 :::

::: danger 这是一个危险警告 :::

::: details 这是一个详情块,在 IE / Edge 中不生效 :::

::: danger STOP 危险区域,禁止通行 :::

::: details 点击查看代码

console.log('你好,VuePress!')

:::

export default {
  name: 'MyComponent',
  // ...
}
<ul>
  <li
    v-for="todo in todos"
    :key="todo.id"
  >
    {{ todo.text }}
  </li>
</ul>
export default { // Highlighted
  data () {
    return {
      msg: `Highlighted!
      This line isn't highlighted,
      but this and the next 2 are.`,
      motd: 'VuePress is awesome',
      lorem: 'ipsum',
    }
  }
}