nebula/components/common/comment/index.js

16 lines
285 B
JavaScript
Raw Normal View History

2020-07-31 16:17:12 +08:00
/**
* @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