# 示例
# 常规操作
直接把 demo 代码用 ::: demo
和 :::
包裹。即可生成可运行的 demo 和代码。
# 使用示例
::: demo
<template>
<button class="animated shake infinite" @click="onClick">Click me!</button>
</template>
<script>
export default {
methods: {
onClick: () => { window.alert(1) },
},
}
</script>
<style>
button {
color: blue;
}
</style>
:::
# 实现效果
hide
<template>
<button class="animated shake infinite" @click="onClick">Click me!</button>
</template>
<script>
export default {
methods: {
onClick: () => { window.alert(1) },
},
}
</script>
<style>
button {
color: blue;
}
</style>
# 代码语言
你可能注意到了展示代码右上角显示了 vue
(默认),这里的语言可配置。
# 使用示例
::: demo html
<p class="common-html">
this is <span style="color: red;">common</span> html
</p>
<style>
.common-html {
color: green;
}
</style>
:::
# 实现效果
this is common html
hide
<p class="common-html">
this is <span style="color: red;">common</span> html
</p>
<style>
.common-html {
color: green;
}
</style>