325303a7f8
* 添加Vssue评论插件 * 修复默认代理过期问题 * style(comment/vssue): format html Co-authored-by: Jimmy Cai <github@jimmycai.com>
28 lines
870 B
HTML
28 lines
870 B
HTML
{{- with .Site.Params.comments.vssue -}}
|
|
<link rel="stylesheet" href="https://unpkg.com/vssue/dist/vssue.min.css" />
|
|
|
|
<div id="vssue"></div>
|
|
|
|
<script src="https://unpkg.com/vue/dist/vue.runtime.min.js"></script>
|
|
<script src="https://unpkg.com/vssue/dist/vssue.{{ .platform }}.min.js"></script>
|
|
|
|
<script>
|
|
new Vue({
|
|
el: "#vssue",
|
|
render: (h) =>
|
|
h("Vssue", {
|
|
props: {
|
|
title: "{{ $.Title }}",
|
|
options: {
|
|
proxy: (url) => "https://cors-anywhere.azm.workers.dev/" + url,
|
|
owner: "{{ .owner }}",
|
|
repo: "{{ .repo }}",
|
|
clientId: "{{ .clientId }}",
|
|
clientSecret: "{{ .clientSecret }}",
|
|
},
|
|
},
|
|
}),
|
|
});
|
|
</script>
|
|
{{- end -}}
|