给博客添加评论功能
给博客添加评论功能 没有评论功能的博客总是不完整的。 于是动手给博客添加上了,基于以下: LeanCloud 提供云存储服务 Valine 一款基于LeanCloud的快速、简洁且高效的无后端评论系统 0.云服务注册 网址 > https://leancloud.cn/ 0.1 创建应用: 创建应用需要实名认证,通过支付宝扫码。 0.2 找到应用Keys 1.安装以上两个工具 npm install --save leancloud-storage valine 2.创建评论组件 创建文件 /docs/.vuepress/components/Valine.vue 编辑为以下内容,并填入自己的 AppId 和 AppKey <template> <div> <hr> <div id="vcomments"></div> </div> </template> <script> export default { name: 'Valine', mounted: function(){ // require window const Valine = require('valine'); if (typeof window !== 'undefined') { this.window = window window.AV = require('leancloud-storage') }