nebula/components/common/comment/index.js
2020-08-01 00:41:54 +08:00

16 lines
281 B
JavaScript

/**
* @file Comment box component / ES module
* @module components/common/comment
* @author Ronger <https://github.com/ronger-x>
*/
import Comment from './main'
export const comment = {
install(Vue) {
Vue.component('comment-box', Comment)
}
}
export default comment