create-api.js 252 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 import createAPIComponent from 'vue-create-api'; export default function createAPI(Vue, Component, events, single) { Vue.use(createAPIComponent, { componentPrefix: 'yoho-' }); const api = Vue.createAPI(Component, events, single); return api; }