nebula/components/common/comment/index.js
2020-07-31 16:17:12 +08:00

16 lines
285 B
JavaScript

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