We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1a3bf9 commit e7f6794Copy full SHA for e7f6794
comment.js
@@ -0,0 +1,5 @@
1
+import Comment from './Comment.vue'
2
+
3
+export default ({ Vue }) => {
4
+ Vue.component('Comment', Comment)
5
+}
index.js
@@ -0,0 +1,13 @@
+const path = require('path')
+module.exports = (opts, ctx) => {
+ return {
+ define: {
6
+ COMMENT_CHOOSEN: opts.choosen || 'gitalk',
7
+ COMMENT_OPTIONS: opts.options || {},
8
+ COMMENT_CONTAINER: opts.container || 'main.page'
9
+ },
10
+ enhanceAppFiles: path.resolve(__dirname, 'comment.js'),
11
+ globalUIComponents: 'Comment'
12
+ }
13
0 commit comments