chore: export and install section

This commit is contained in:
Sagi 2022-09-30 15:12:31 +08:00
parent b50d76541f
commit da81bacb3e
1 changed files with 11 additions and 0 deletions

View File

@ -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);
}
};