Skip to content

Commit e7f6794

Browse files
committed
add: vuepress plugin config
1 parent a1a3bf9 commit e7f6794

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

comment.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import Comment from './Comment.vue'
2+
3+
export default ({ Vue }) => {
4+
Vue.component('Comment', Comment)
5+
}

index.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
const path = require('path')
2+
3+
module.exports = (opts, ctx) => {
4+
return {
5+
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

Comments
 (0)