20 lines
431 B
JavaScript
20 lines
431 B
JavaScript
import Vue from 'vue'
|
|
|
|
import HumanDate from '@/components/common/HumanDate'
|
|
|
|
Vue.component('human-date', HumanDate)
|
|
|
|
import Username from '@/components/common/Username'
|
|
|
|
Vue.component('username', Username)
|
|
|
|
import DangerousButton from '@/components/common/DangerousButton'
|
|
|
|
Vue.component('dangerous-button', DangerousButton)
|
|
|
|
import Message from '@/components/common/Message'
|
|
|
|
Vue.component('message', Message)
|
|
|
|
export default {}
|