UNPKG
vue-gitment
Version:
latest (0.1.2)
0.1.2
0.1.1
0.1.0
A comment plugin by gitment
github.com/vue-blog/vue-gitment
vue-blog/vue-gitment
vue-gitment
/
src
/
lib
/
index.js
10 lines
•
242 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
VueComment
from
'./VueComment.vue'
const
comment = {
install
:
function
(
Vue
) {
Vue
.
component
(
VueComment
.
name
,
VueComment
) } }
if
(
typeof
window
!==
'undefined'
&&
window
.
Vue
) {
window
.
Vue
.
use
(comment) }
export
default
comment