UNPKG

@red-code-mp/mp-builder

Version:

* [Structure](#Structure) * [Route](#Route) * [Endpoints](#Endpoints) * [Table](#Table) * [Lang](#Lang) * [Menu](#Menu) * [Toast](#Toast)

18 lines (16 loc) 395 B
import Vue from 'vue' export default { methods: { /** * checks the existence of components in the global * vue instance * * @param component * @return {boolean} * @author Amr */ isValidComponent(component) { return Vue.options.components[component] !== undefined; } } }