Develope Component
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
// src/components/index.ts
import BpaButton from "./BpaButton.vue";
const Components: {[key: string]: any} = {
BpaButton,
//...
}// types/bpa.d.ts
// import
import { BpaNewComponent } from './new-component'
// export
/** NewComponent Component */
export class NewComponent extends BpaNewComponent {}