Develop Component

Create new file
Register
Type
If you want to quickly test while developing in Nuxt2…
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 {}