Skip to content

站内链接跳转

Table

column1column2column3column4
row 1row 1row 1row 1
row 2row 2row 2row 2

Emoji

🎉 💯 😄

more emoji

Custom Containers

TIP

This is a tip.

WARNING

This is a warning.

这里是信息框的标题

This is a dangerous warning.

这里是信息框的标题

This is a details block.

this an element

这里是是一段 html 片段

Syntax Highlighting in Code Blocks

js
import { ref } from 'vue'
export default {
    setup () {
        const test = ref(0)
        return {
            test
        }
    }
}

Code Groups

html
    <html>
        <head></head>
        <body>
            <script src='./config.js'></script>
        </body>
    </html>
0