Welcome to mirror list, hosted at ThFree Co, Russian Federation.

vssue.html « provider « comments « partials « layouts - github.com/CaiJimmy/hugo-theme-stack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 79ac381dcac89f114c195091395af6d2b1521308 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{{- 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@2/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: {
                        autoCreateIssue: {{ default false .autoCreateIssue }},
                        owner: "{{ .owner }}",
                        repo: "{{ .repo }}",
                        clientId: "{{ .clientId }}",
                        clientSecret: "{{ .clientSecret }}",
                    },
                },
            }),
    });
</script>
{{- end -}}