chore: export and install section
This commit is contained in:
parent
b50d76541f
commit
da81bacb3e
|
@ -0,0 +1,11 @@
|
|||
import type { App } from 'vue';
|
||||
import Section from './src/section.component';
|
||||
|
||||
export * from './src/section.props';
|
||||
export { Section };
|
||||
|
||||
export default {
|
||||
install(app: App): void {
|
||||
app.component(Section.name, Section);
|
||||
}
|
||||
};
|
Loading…
Reference in New Issue