11 lines
142 B
JavaScript
11 lines
142 B
JavaScript
|
import tab from './tab'
|
||
|
import auth from './auth'
|
||
|
import modal from './modal'
|
||
|
|
||
|
const plugins = {
|
||
|
tab,
|
||
|
auth,
|
||
|
modal
|
||
|
}
|
||
|
export default plugins
|