Skip to content
On this page

跳转

Home

install

foo heading

bar - three

bar - three

bar - four

表格

TablesAreCool
col 3 isright-aligned$1600
col 2 iscentered$12
zebra stripesare neat$1

emoji

💯 👍 😄 ✨ 🐫 🎉 🚀 🤘 🤒

自定义容器

INFO

This is an info box.

TIP

This is a tip.

WARNING

This is a warning.

DANGER

This is a dangerous warning.

danger

This is a details block.

代码

js
export default {
  name: 'MyComponent',
  // ...
}
html
<ul>
  <li v-for="todo in todos" :key="todo.id">
    {{ todo.text }}
  </li>
</ul>

行高亮

js
export default {
  data () {
    return {
      msg: 'Highlighted!'
    }
  }
}