2020-07-31 16:17:12 +08:00
|
|
|
/**
|
|
|
|
* @file Comment box component / ES module
|
|
|
|
* @module components/common/comment
|
2020-08-01 00:41:54 +08:00
|
|
|
* @author Ronger <https://github.com/ronger-x>
|
2020-07-31 16:17:12 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
import Comment from './main'
|
|
|
|
|
|
|
|
export const comment = {
|
|
|
|
install(Vue) {
|
|
|
|
Vue.component('comment-box', Comment)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default comment
|