yhqemoji
Version:
yhqEmoji
20 lines (17 loc) • 355 B
JavaScript
import yhqEmoji from './App.vue'
const components = [
yhqEmoji
]
const install = function (Vue, opts = {}) {
components.map(component => {
Vue.component(component.name, component);
})
}
/* 支持使用标签的方式引入 */
if (typeof window !== 'undefined' && window.Vue) {
install(window.Vue);
}
export default {
install,
yhqEmoji
}