You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
307 B
20 lines
307 B
import { chart } from '../expendPlugins/chart/plugin'
|
|
|
|
const pluginsObj = {
|
|
'chart':chart
|
|
}
|
|
|
|
/**
|
|
* Register plugins
|
|
*/
|
|
function initPlugins(plugins , data){
|
|
if(plugins.length){
|
|
plugins.forEach(plugin => {
|
|
pluginsObj[plugin](data)
|
|
});
|
|
}
|
|
}
|
|
|
|
export {
|
|
initPlugins
|
|
}
|