UNPKG

vue3-js-panel

Version:

A Vue component for jsPanel, base on vue-js-panel https://www.npmjs.com/package/vue-js-panel

14 lines (9 loc) 301 B
import JsPanel from './JsPanel' // Export components individually export { JsPanel } // What should happen if the user installs the library as a plugin function install(Vue) { Vue.component('JsPanel', JsPanel) } // Export the library as a plugin export default { install: install }