chore: export and install text component

This commit is contained in:
Sagi 2022-09-30 15:21:47 +08:00
parent f50b1afb68
commit 0ad5b7ae30
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
import type { App } from 'vue';
import Text from './src/text.component';
export * from './src/text.props';
export { Text };
export default {
install(app: App): void {
app.component(Text.name, Text);
}
};