VuePress主题Plume配置总结
Theme Plume VuePress Next Theme
一个简约易用的,功能丰富的 vuepress 文档&博客 主题
vs 创建文件,默认创建了 title、author、 createTime、permalnk
在命令行里面创建文件 也会默认创建基本信息
- home -
- vscode -
- twitter -
警告
危险内容
插入vue代码
Finish Cal
<!-- ↑ 你也可以使用 html -->
<template>
<!-- vue 模板 -->
<h2>todo 使用vue嵌入vuex组件实现todo列表</h2>
...
</template>
<script>
export default {
// vue 组件
};
</script>
<style>
/* css 代码 */
</style>
可编辑go语言代码
:::go-repl#editable
package main
import ("fmt")
func main(){
fmt.Println("hello world")
}
:::
Demo 演示
<h1>Hello Word!</h1>
<p><span id="very">非常</span>强大!</p>
document.querySelector('#very').addEventListener('click', () => {
alert('非常强大')
})
span {
color: red;
}